refactor requirements
This commit is contained in:
parent
de43301785
commit
993d91e5b8
2 changed files with 4 additions and 13 deletions
|
@ -1,9 +1,10 @@
|
||||||
SQLAlchemy==0.8.3
|
|
||||||
aiofiles==0.6.0
|
aiofiles==0.6.0
|
||||||
|
aiohttp==3.7.4
|
||||||
click==7.1.2
|
click==7.1.2
|
||||||
fastapi==0.62.0
|
fastapi==0.62.0
|
||||||
h11==0.11.0
|
h11==0.11.0
|
||||||
pydantic==1.7.3
|
pydantic==1.7.3
|
||||||
|
SQLAlchemy==0.8.3
|
||||||
starlette==0.13.6
|
starlette==0.13.6
|
||||||
typing-extensions==3.7.4.3
|
typing-extensions==3.7.4.3
|
||||||
uvicorn==0.13.1
|
uvicorn==0.13.1
|
||||||
|
|
14
setup.py
14
setup.py
|
@ -2,18 +2,8 @@
|
||||||
|
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
REQUIREMENTS = [
|
with open("requirements.txt") as buf:
|
||||||
"SQLAlchemy==0.8.3",
|
REQUIREMENTS = [line.strip() for line in buf if line.strip()]
|
||||||
"aiofiles==0.6.0",
|
|
||||||
"aiohttp==3.7.4",
|
|
||||||
"click==7.1.2",
|
|
||||||
"fastapi==0.62.0",
|
|
||||||
"h11==0.11.0",
|
|
||||||
"pydantic==1.7.3",
|
|
||||||
"starlette==0.13.6",
|
|
||||||
"typing-extensions==3.7.4.3",
|
|
||||||
"uvicorn==0.13.1",
|
|
||||||
]
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="techrec",
|
name="techrec",
|
||||||
|
|
Loading…
Reference in a new issue