forked from cga-harvard/geonode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·30 lines (27 loc) · 893 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
from setuptools import setup, find_packages
setup(name='GeoNodePy',
version= __import__('geonode').get_version(),
description="Application for serving and sharing geospatial data",
long_description=open('README.rst').read(),
classifiers=[
"Development Status :: 1 - Planning" ], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='GeoNode Developers',
author_email='[email protected]',
url='http://worldmap.harvard.edu',
license='GPL',
packages = find_packages(),
include_package_data=True,
install_requires = [
"gsconfig.py",
"OWSLib==0.4.0",
"Django>=1.1",
"Pillow",
"django-extensions",
"httplib2"
],
zip_safe=False,
entry_points="""
# -*- Entry points: -*-
""",
)