-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
71 lines (50 loc) · 1.73 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
from setuptools import find_packages, setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
with open(path.join(here, "VERSION"), encoding="utf-8") as f:
version = f.read().strip()
setup(
name="pyairports",
version=version,
description="Airport and other locations database",
long_description=long_description,
url="https://",
author="N/A",
author_email="N/A",
license="Apache Software License",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers, Data Scientists",
"Topic :: Software :: Graph Analysis",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
],
keywords="Airports",
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
# Requirements go here
install_requires=[],
# Requrements for specific build cycles go here
# { 'build': [requirements,for,build] }
extras_require={},
# For data files within your package
# { package_name: [filenames, in, the, package] }
package_data={
'pyairports': ['data/airport_list.json', 'data/other_list.json']
},
# For data files outside your package
# [ ( directory, [filenames, in, the, directory] }
data_files=[],
# Define entry points to your program
# "command=package:function"
entry_points={
"console_scripts": [
"pyairports=pyairports.airports:main"
],
},
test_suite='nose.collector',
tests_require=['nosexcover'],
)