-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (39 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
39
40
from setuptools import setup
setup(name='pynggdpp',
version='0.0.3',
description='Bare bones version of pynggdpp',
url='http://github.com/nggdpp/pynggdpp',
author='R. Sky Bristol',
author_email='sbristol@usgs.gov',
license='unlicense',
packages=['pynggdpp'],
install_requires=[
'beautifulsoup4',
'boto3',
'bs4',
'certifi',
'chardet',
'decorator',
'defusedxml',
'elasticsearch',
'elasticsearch_dsl',
'geojson',
'gis-metadata-parser',
'idna',
'numpy',
'owslib',
'pandas',
'parserutils',
'pymongo',
'python-dateutil',
'pytz',
'requests',
'reverse_geocoder',
'sciencebasepy',
'six',
'soupsieve',
'urllib3',
'validators',
'xmltodict'
],
zip_safe=False)