You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
766 B

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. from setuptools import setup, find_packages
  2. with open("requirements.txt") as file:
  3. INSTALL_REQUIRES = file.read().rstrip().split("\n")
  4. setup(
  5. name="ctabus",
  6. version="2.5.2",
  7. description="Python package for tracking cta bus times",
  8. install_requires=INSTALL_REQUIRES,
  9. author="rlbr",
  10. author_email="raphael.roberts48@gmail.com",
  11. packages=find_packages(),
  12. include_package_data=True,
  13. entry_points={"console_scripts": ["ctabus=ctabus.__main__:main"]},
  14. classifiers=[
  15. "License :: OSI Approved :: MIT License",
  16. "Programming Language :: Python :: 3 :: Only",
  17. "Programming Language :: Python :: 3.5",
  18. "Programming Language :: Python :: 3.6",
  19. "Programming Language :: Python :: 3.7",
  20. ],
  21. )