set uvicorn as optional dep
This commit is contained in:
parent
1d805abb13
commit
6dec827a0c
|
@ -1,8 +1,9 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "halfapi"
|
name = "halfapi"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = ""
|
description = "The core module for an halfORM API"
|
||||||
authors = ["Joël Maizi <joel.maizi@lirmm.fr>", "Maxime Alves <maxime.alves@lirmm.fr>"]
|
authors = ["Joël Maizi <joel.maizi@lirmm.fr>", "Maxime Alves <maxime.alves@lirmm.fr>"]
|
||||||
|
homepage = "https://gite.lirmm.fr/newsi/api/halfapi"
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
click = "^7.0.0"
|
click = "^7.0.0"
|
||||||
|
@ -10,7 +11,7 @@ half-orm = { git = "git@gite.lirmm.fr:newsi/halfORM.git" }
|
||||||
PyJWT = "^1.7.0"
|
PyJWT = "^1.7.0"
|
||||||
python = "^3.7"
|
python = "^3.7"
|
||||||
starlette = "^0.13.0"
|
starlette = "^0.13.0"
|
||||||
uvicorn = "^0.11.0"
|
uvicorn = { version = "^0.11.0", optional = True }
|
||||||
fastapi = { version = "*", optional = true }
|
fastapi = { version = "*", optional = true }
|
||||||
organigramme = { git = "git@gite.lirmm.fr:newsi/api/organigramme.git", optional = true }
|
organigramme = { git = "git@gite.lirmm.fr:newsi/api/organigramme.git", optional = true }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue