forked from ishiland/python-geosupport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.32 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
try:
from setuptools import setup
except ImportError:
raise ImportError(
"setuptools module required, please go to "
"https://pypi.python.org/pypi/setuptools and follow the instructions "
"for installing setuptools"
)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='python-geosupport',
version='1.0.9',
url='https://github.com/ishiland/python-geosupport',
description='Python bindings for NYC Geosupport Desktop Edition',
long_description=long_description,
long_description_content_type='text/markdown',
author='Ian Shiland, Jeremy Neiman',
author_email='[email protected]',
packages=['geosupport'],
include_package_data=True,
license='MIT',
keywords=['NYC', 'geocoder', 'python-geosupport', 'geosupport'],
classifiers=[
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
test_suite="tests",
extras_require={
'dev': [
'coverage',
'invoke>=1.1.1',
'nose'
]
}
)