Update requirements in setup.py
This commit is contained in:
parent
5124f2d3ca
commit
c48efc46d2
1 changed files with 13 additions and 1 deletions
14
setup.py
14
setup.py
|
@ -3,6 +3,18 @@
|
|||
from distutils.core import setup
|
||||
import setuptools
|
||||
|
||||
REQUIREMENTS = [
|
||||
"SQLAlchemy==0.8.3",
|
||||
"aiofiles==0.6.0",
|
||||
"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(
|
||||
name="techrec",
|
||||
version="2.0.0",
|
||||
|
@ -14,7 +26,7 @@ setup(
|
|||
author_email="piuttosto@logorroici.org",
|
||||
packages=["techrec"],
|
||||
package_dir={"techrec": "techrec"},
|
||||
install_requires=["SQLAlchemy==0.8.3", "fastapi==0.62.0", "aiofiles==0.6.0"],
|
||||
install_requires=REQUIREMENTS,
|
||||
classifiers=["Programming Language :: Python :: 3.7"],
|
||||
entry_points={"console_scripts": ["techrec = techrec.cli:main"]},
|
||||
zip_safe=False,
|
||||
|
|
Loading…
Reference in a new issue