|
|
|
@ -1,26 +1,22 @@ |
|
|
|
from setuptools import setup, find_packages |
|
|
|
|
|
|
|
with open('requirements.txt') as file: |
|
|
|
INSTALL_REQUIRES = file.read().rstrip().split('\n') |
|
|
|
with open("requirements.txt") as file: |
|
|
|
INSTALL_REQUIRES = file.read().rstrip().split("\n") |
|
|
|
|
|
|
|
setup( |
|
|
|
name='ctabus', |
|
|
|
version='2.1.3', |
|
|
|
description='Python package for tracking cta bus times', |
|
|
|
name="android_java", |
|
|
|
version="1.0", |
|
|
|
description="Python module to compile, dex, and run java programs", |
|
|
|
install_requires=INSTALL_REQUIRES, |
|
|
|
author='rlbr', |
|
|
|
author_email='raphael.roberts48@gmail.com', |
|
|
|
author="Raphael Roberts", |
|
|
|
author_email="raphael.roberts48@gmail.com", |
|
|
|
packages=find_packages(), |
|
|
|
entry_points={ |
|
|
|
'console_scripts': ['ctabus=ctabus:main'] |
|
|
|
}, |
|
|
|
entry_points={"console_scripts": ["droid=android_java: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', |
|
|
|
|
|
|
|
] |
|
|
|
|
|
|
|
"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", |
|
|
|
], |
|
|
|
) |