setup.py 854 B

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