-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (23 loc) · 834 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
25
26
from distutils.core import setup
import sys
import easygo
kw = dict(
name = 'easygopy',
version = easygo.__version__,
description = 'Easygo API Python SDK',
author = 'DreamCatcher',
author_email = '[email protected]',
url = 'https://github.com/Dreamcatcher-GIS/easygo_python',
download_url = 'https://github.com/Dreamcatcher-GIS/easygo_python',
py_modules = ['easygo'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
])
setup(**kw)