-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 787 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 787 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
from setuptools import setup, find_packages
setup(
name='python-cicero',
version='0.1.0',
author='Azavea',
author_email='info@azavea.com',
maintainer='Andrew Thompson',
maintainer_email='athompson@azavea.com',
packages=find_packages(),
url=['http://github.com/azavea/python-cicero'],
license='LICENSE.txt',
description='Python wrapper for Azavea\'s Cicero API',
long_description=open('README.rst').read(),
install_requires=[],
extras_require = { 'docs': ["pycco"],},
test_suite = "cicero.test.tests",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: GIS',
'Programming Language :: Python :: 2.7'
],
)