[deps] add PyYAML to dependencies
This commit is contained in:
parent
b651d90f0e
commit
acb0a46904
1
Pipfile
1
Pipfile
|
@ -15,6 +15,7 @@ starlette = "*"
|
||||||
uvicorn = "*"
|
uvicorn = "*"
|
||||||
orjson = "*"
|
orjson = "*"
|
||||||
pyjwt = "*"
|
pyjwt = "*"
|
||||||
|
pyyaml = "*"
|
||||||
|
|
||||||
[requires]
|
[requires]
|
||||||
python_version = "3"
|
python_version = "3"
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -48,7 +48,8 @@ setup(
|
||||||
"half_orm @ git+ssh://git@gite.lirmm.fr/maizi/halfORM.git",
|
"half_orm @ git+ssh://git@gite.lirmm.fr/maizi/halfORM.git",
|
||||||
"click>=7.1,<8",
|
"click>=7.1,<8",
|
||||||
"uvicorn>=0.11,<1",
|
"uvicorn>=0.11,<1",
|
||||||
"orjson>=3.1.1,<4"
|
"orjson>=3.1.1,<4",
|
||||||
|
"pyyaml>=5.3.1,<6"
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
"tests":[
|
"tests":[
|
||||||
|
|
Loading…
Reference in New Issue