2020-07-02 22:03:17 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "halfapi"
|
2020-07-03 20:15:21 +02:00
|
|
|
version = "0.1.0"
|
2020-07-02 22:03:17 +02:00
|
|
|
description = ""
|
2020-07-03 20:15:21 +02:00
|
|
|
authors = ["Joël Maizi <joel.maizi@lirmm.fr>", "Maxime Alves <maxime.alves@lirmm.fr>"]
|
2020-07-02 22:03:17 +02:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
click = "^7.0.0"
|
2020-07-03 20:15:21 +02:00
|
|
|
half-orm = { git = "git@gite.lirmm.fr:/newsi/halfORM.git" }
|
2020-07-02 22:03:17 +02:00
|
|
|
PyJWT = "^1.7.0"
|
2020-07-03 20:15:21 +02:00
|
|
|
python = "^3.7"
|
2020-07-02 22:03:17 +02:00
|
|
|
starlette = "^0.13.0"
|
|
|
|
uvicorn = "^0.11.0"
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pytest = "^3.4.0"
|
|
|
|
requests = "^2.0.0"
|
|
|
|
|
2020-07-03 20:15:21 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|
|
|
|
|
2020-07-02 22:03:17 +02:00
|
|
|
[tool.poetry.scripts]
|
2020-07-03 20:15:21 +02:00
|
|
|
halfapi = 'halfapi.cli:cli'
|