-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsetup.py
32 lines (30 loc) · 1.03 KB
/
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
from distutils.core import setup
from setuptools import find_packages
long_description = open('README.md').read()
setup(
name='cartoview',
packages=find_packages(),
version=__import__('cartoview').get_current_version(),
description='Cartoview is a GIS web mapping application framework to \
easily share and deploy apps based on Geonode',
long_description=long_description,
long_description_content_type='text/markdown',
author='Cartologic',
author_email='[email protected]',
url='https://github.com/cartologic/cartoview',
include_package_data=True,
keywords=[
'cartoview', 'gis', 'geonode', "django", "web mapping", "applications",
"apps", "application management"
],
classifiers=[
"Development Status :: 4 - Beta", "Framework :: Django :: 1.8",
"Topic :: Scientific/Engineering :: GIS"
],
license="BSD",
install_requires=[
'future', 'geonode==4.0.0rc0',
'Faker>=0.8.4',
'cherrypy==18.6.1',
'portalocker==1.3.0'
])