setup.py 831 B

12345678910111213141516171819202122232425
  1. #!/usr/bin/env python
  2. from distutils.core import setup
  3. with open("requirements.txt") as buf:
  4. REQUIREMENTS = [line.strip() for line in buf if line.strip()]
  5. setup(
  6. name="techrec",
  7. version="2.0.0a1.dev1",
  8. description="A Python3 web application "
  9. "that assist radio speakers in recording their shows",
  10. long_description=open("README.md").read(),
  11. long_description_content_type="text/markdown",
  12. author="boyska",
  13. author_email="piuttosto@logorroici.org",
  14. packages=["techrec"],
  15. package_dir={"techrec": "techrec"},
  16. install_requires=REQUIREMENTS,
  17. classifiers=["Programming Language :: Python :: 3.7"],
  18. entry_points={"console_scripts": ["techrec = techrec.cli:main"]},
  19. zip_safe=False,
  20. install_package_data=True,
  21. package_data={"techrec": ["static/**/*", "pages/*.html"]},
  22. )