setup.py 816 B

123456789101112131415161718192021222324252627
  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. setup(
  4. name="techrec",
  5. version="1.1.1",
  6. description="A Python2 web application "
  7. "that assist radio speakers in recording their shows",
  8. long_description=open("README.md").read(),
  9. long_description_content_type="text/markdown",
  10. author="boyska",
  11. author_email="piuttosto@logorroici.org",
  12. packages=["techrec"],
  13. package_dir={"techrec": "server"},
  14. install_requires=[
  15. "Paste==1.7.5.1",
  16. "SQLAlchemy==0.8.3",
  17. "bottle==0.11.6",
  18. "wsgiref==0.1.2",
  19. ],
  20. classifiers=["Programming Language :: Python :: 2.7"],
  21. entry_points={"console_scripts": ["techrec = techrec.cli:main"]},
  22. zip_safe=False,
  23. install_package_data=True,
  24. package_data={"techrec": ["static/**/*", "pages/*.html"]},
  25. )