-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (39 loc) · 1.25 KB
/
setup.py
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
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def path(p):
return os.path.join(os.path.abspath(os.path.dirname(__file__)), p)
long_description = ''
try:
long_description += open(path('README.rst')).read()
long_description += '\n\n' + open(path('CHANGES.rst')).read()
except IOError:
pass
version = '0.0.1'
requirements = [
'apiclient'
]
setup(name='flightstatsclient',
version=version,
description="API client for Cirium Flightstats.",
long_description=long_description,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
],
keywords='api client flightstats urllib3 keepalive threadsafe http rest',
author='Erik surface',
author_email='erik.surface@gmail.com',
url='https://github.com/esurface/flightstatsclient',
license='MIT',
packages=['flightstatsclient'],
install_requires=requirements,
)