forked from cartologic/cartoview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.08 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
33
34
35
36
from distutils.core import setup
from setuptools import find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
setup(
name='cartoview',
packages=find_packages(),
version='1.3.1',
description='Cartoview is a GIS web mapping application framework to \
easily share and deploy apps based on Geonode',
long_description=long_description,
author='Cartologic',
author_email='[email protected]',
url='https://github.com/cartologic/cartoview',
include_package_data=True,
python_requires='>=2.7.12, !=3.0.*, !=3.1.*, !=3.2.*, <4',
keywords=[
'cartoview',
'gis',
'geonode',
"django",
"web mapping",
"applications",
"apps",
"application management"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django :: 1.8",
"Topic :: Scientific/Engineering :: GIS"],
license="BSD",
install_requires=['future', 'six==1.10.0'])