-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
38 lines (35 loc) · 1.01 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
PACKAGE = "flightaware"
NAME = "flightaware"
DESCRIPTION = "A python REST interface for flightaware data"
AUTHOR = "Fred Palmer"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/fredpalmer/flightaware"
config = {
"description": DESCRIPTION,
"author": AUTHOR,
"url": URL,
"author_email": AUTHOR_EMAIL,
"version": "0.1",
"install_requires": [
"requests>=2.0.0",
],
"keywords": "travel flightaware airline flight flight-tracking flight-data",
"classifiers": [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
],
"packages": [PACKAGE, ],
"scripts": [],
"name": NAME,
"license": "MIT",
}
setup(**config)