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
23 lines
766 B
from setuptools import setup, find_packages
|
|
|
|
with open("requirements.txt") as file:
|
|
INSTALL_REQUIRES = file.read().rstrip().split("\n")
|
|
|
|
setup(
|
|
name="ctabus",
|
|
version="2.4.4",
|
|
description="Python package for tracking cta bus times",
|
|
install_requires=INSTALL_REQUIRES,
|
|
author="rlbr",
|
|
author_email="raphael.roberts48@gmail.com",
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
entry_points={"console_scripts": ["ctabus=ctabus.__main__:main"]},
|
|
classifiers=[
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Programming Language :: Python :: 3.5",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
],
|
|
)
|