38 lines
1 KiB
Python
38 lines
1 KiB
Python
#!/usr/bin/env python
|
|
|
|
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",
|
|
description="A Python3 web application "
|
|
"that assist radio speakers in recording their shows",
|
|
long_description=open("README.md").read(),
|
|
long_description_content_type="text/markdown",
|
|
author="boyska",
|
|
author_email="piuttosto@logorroici.org",
|
|
packages=["techrec"],
|
|
package_dir={"techrec": "techrec"},
|
|
install_requires=REQUIREMENTS,
|
|
classifiers=["Programming Language :: Python :: 3.7"],
|
|
entry_points={"console_scripts": ["techrec = techrec.cli:main"]},
|
|
zip_safe=False,
|
|
install_package_data=True,
|
|
package_data={"techrec": ["static/**/*", "pages/*.html"]},
|
|
test_suite="nose.collector",
|
|
setup_requires=["nose>=1.0"],
|
|
tests_requires=["nose>=1.0"],
|
|
)
|