forked from jordansread/pyGDP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 697 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 697 Bytes
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
import ast
import sys
from pyGDP import __version__
try:
from setuptools import setup
except:
sys.exit('Requires distribute or setuptools')
from setuptools import find_packages
# TODO: include the examples in the sdist
setup(
name = 'pyGDP',
version = __version__,
description = 'Interface to the USGS GeoData Portal',
long_description = open('README.md').read(),
license='Public Domain',
maintainer='Jordan Read', # Originally Xao Yang
maintainer_email='jread@usgs.gov',
py_modules=['pyGDP','GDP_XML_Generator'],
packages=find_packages(),
install_requires=['setuptools'],
url='https://github.com/USGS-CIDA/pyGDP',
test_suite='tests',
)