-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
24 lines (22 loc) · 831 Bytes
/
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
from setuptools import setup, find_packages
version = '0.1'
setup(name='opendata',
version=version,
description="ArcGIS Open Data API",
long_description="Python bindings to the OpenData data.json",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7'],
keywords='OpenData Python API',
author='Jon Nordling',
author_email='jonnordling@gmail.com',
url='https://github.com/onaio/onapie',
license='MIT',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
test_suite='opendata',
install_requires=['requests'],)