setup.py 918 B

12345678910111213141516171819202122232425262728
  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. setup(
  4. name="techrec",
  5. version="1.2.0",
  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=["Paste~=3.2", "SQLAlchemy==0.8.3", "bottle~=0.12"],
  15. classifiers=[
  16. "Programming Language :: Python :: 2.7",
  17. "Programming Language :: Python :: 3.7",
  18. ],
  19. entry_points={"console_scripts": ["techrec = techrec.cli:main"]},
  20. zip_safe=False,
  21. install_package_data=True,
  22. package_data={"techrec": ["static/**/*", "pages/*.html"]},
  23. test_suite="nose.collector",
  24. setup_requires=["nose>=1.0"],
  25. tests_requires=["nose>=1.0"],
  26. )