-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
51 lines (49 loc) · 1.59 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
from setuptools import setup, find_packages
version = '0.0.1'
setup(name='joerd',
version=version,
description="A tool for downloading and generating elevation data.",
long_description=open('README.md').read(),
classifiers=[
# strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Utilities',
],
keywords='map dem elevation raster',
author='Matt Amos, Mapzen',
author_email='[email protected]',
url='https://github.com/mapzen/joerd',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'GDAL',
'beautifulsoup4',
'requests',
'numpy',
'PyYAML',
'pyqtree',
'geographiclib',
'boto3',
'contextlib2',
],
test_suite='tests',
tests_require=[
'httptestserver',
],
entry_points=dict(
console_scripts=[
'joerd = joerd.command:joerd_main',
]
)
)