forked from planetfederal/geogig-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 764 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
import os
from setuptools import setup
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name="geogig-py",
version="1.1-SNAPSHOT",
install_requires=['py4j>=0.8', 'requests>=2.2.1'],
author="Victor Olaya",
author_email="volaya@boundlessgeo.com",
description="Python bindings for GeoGig",
long_description=(read('README')),
# Full list of classifiers can be found at:
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
],
license="BSD",
keywords="geogig",
url='https://github.com/boundlessgeo/geogig-py',
package_dir={'': 'src'},
test_suite='test.suite',
packages=['geogigpy',]
)