-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.18 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from flight_tracker import __version__
from setuptools import setup
with open('README.md', 'r') as readme_file:
readme = readme_file.read()
with open('requirements.txt', 'r') as req_file:
requirements = [x.strip() for x in req_file.readlines()]
setup(
name='flight_tracker',
version=__version__,
description='Track Southwest flights and optionally send notifications when prices drop.',
long_description=readme,
author="broadtoad",
author_email='broadtoad@gmail.com',
url='https://github.com/broadtoad/Flight_Tracker/',
packages=['flight_tracker'],
package_dir={'flight_tracker': 'flight_tracker'},
data_files=[('flight_tracker', ['twilio.json', 'airport_routes.json'])],
install_requires=requirements,
license="MIT",
zip_safe=False,
keywords="flights tracker",
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
entry_points={
'console_scripts': ['flight_tracker=flight_tracker.flight_tracker:main'],
},
)