-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·27 lines (27 loc) · 922 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
from distutils.core import setup
from setuptools import find_packages
from __init__ import __version__, APP_NAME
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name = APP_NAME,
packages = find_packages(),
version = __version__,
description = 'Create graduated thematic styles for WMS layers with cartoview',
long_description=long_description,
author = 'Cartologic',
author_email = '[email protected]',
url = 'https://github.com/cartologic/' + APP_NAME,
include_package_data=True,
keywords = ['cartoview', 'gis', 'geonode', "django", "web mapping", "applications", "apps", "styler"],
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django :: 1.8",
"Topic :: Scientific/Engineering :: GIS"
],
license="BSD",
install_requires= ['cartoview']
)