25 lines
831 B
Python
25 lines
831 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
with open("requirements.txt") as buf:
|
|
REQUIREMENTS = [line.strip() for line in buf if line.strip()]
|
|
|
|
setup(
|
|
name="techrec",
|
|
version="2.0.0a1.dev1",
|
|
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"]},
|
|
)
|