1
0
mirror of https://github.com/enpaul/keyosk.git synced 2025-12-18 09:27:38 +00:00

Convert from pipenv to poetry

This commit is contained in:
2020-02-18 22:05:32 -05:00
parent 3561a3c01e
commit b17988e287
5 changed files with 34 additions and 315 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[tool.poetry]
name = "keyosk"
version = "0.1.0"
description = "REST API for issuing and managing JSON web tokens"
authors = ["Ethan Paul <e@enp.one>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6"
toml = "^0.10.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"