4 changed files with 27 additions and 25 deletions
@ -1,16 +1,16 @@ |
|||||
from setuptools import setup |
|
||||
|
from setuptools import setup, find_packages |
||||
|
|
||||
with open('requirements.txt') as file: |
with open('requirements.txt') as file: |
||||
INSTALL_REQUIRES = file.read().rstrip().split('\n') |
INSTALL_REQUIRES = file.read().rstrip().split('\n') |
||||
|
|
||||
setup( |
setup( |
||||
name='ctabus', |
name='ctabus', |
||||
version='1.0', |
|
||||
|
version='1.0.1', |
||||
description='Python package for tracking cta bus times', |
description='Python package for tracking cta bus times', |
||||
install_requires=INSTALL_REQUIRES, |
install_requires=INSTALL_REQUIRES, |
||||
author='rlbr', |
author='rlbr', |
||||
author_email='raphael.roberts48@gmail.com', |
author_email='raphael.roberts48@gmail.com', |
||||
packages=['ctabus'], |
|
||||
|
packages=find_packages(), |
||||
entry_points={ |
entry_points={ |
||||
'console_scripts': ['ctabus=ctabus:main'] |
'console_scripts': ['ctabus=ctabus:main'] |
||||
} |
} |
||||
|
|||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue