forked from ingenieroariel/gsconfig.py
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
32 lines (27 loc) · 909 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
27
28
29
30
31
32
# coding: utf-8
from setuptools import setup, find_packages
try:
readme_text = open('README.rst', 'r').read()
except IOError as e:
readme_text = ''
setup(
name='gsconfig-py3',
version='1.0.7',
description = "GeoServer REST Configuration",
long_description = readme_text,
url='https://github.com/dimitri-justeau/gsconfig-py3',
author='Dimitri Justeau (IAC/AMAP)',
author_email='[email protected]',
package_dir={'': 'src'},
packages=find_packages('src'),
install_requires=['requests >= 2.4.3', ],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: GIS',
]
)