2019-11-15 18:17:06 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2021-08-24 23:21:31 +02:00
|
|
|
from distutils.core import setup
|
2019-11-15 18:17:06 +01:00
|
|
|
|
2021-08-25 17:03:58 +02:00
|
|
|
REQUIREMENTS = [
|
|
|
|
"SQLAlchemy==0.8.3",
|
|
|
|
"aiofiles==0.6.0",
|
2021-09-15 17:49:06 +02:00
|
|
|
"aiohttp==3.7.4",
|
2021-08-25 17:03:58 +02:00
|
|
|
"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",
|
|
|
|
]
|
|
|
|
|
2019-11-15 18:17:06 +01:00
|
|
|
setup(
|
|
|
|
name="techrec",
|
2020-12-15 14:36:39 +01:00
|
|
|
version="2.0.0",
|
|
|
|
description="A Python3 web application "
|
2019-11-15 18:17:06 +01:00
|
|
|
"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"],
|
2020-12-15 14:36:39 +01:00
|
|
|
package_dir={"techrec": "techrec"},
|
2021-08-25 17:03:58 +02:00
|
|
|
install_requires=REQUIREMENTS,
|
2020-12-15 14:36:39 +01:00
|
|
|
classifiers=["Programming Language :: Python :: 3.7"],
|
2019-11-15 19:20:56 +01:00
|
|
|
entry_points={"console_scripts": ["techrec = techrec.cli:main"]},
|
|
|
|
zip_safe=False,
|
|
|
|
install_package_data=True,
|
|
|
|
package_data={"techrec": ["static/**/*", "pages/*.html"]},
|
2019-11-15 22:30:37 +01:00
|
|
|
test_suite="nose.collector",
|
|
|
|
setup_requires=["nose>=1.0"],
|
|
|
|
tests_requires=["nose>=1.0"],
|
2019-11-15 18:17:06 +01:00
|
|
|
)
|