forked from kartograph/kartograph.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1 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
from setuptools import setup, find_packages
long_desc = """
Open Source Python library for generating SVG maps from shapefiles and postgis.
"""
setup(
name='kartograph.py',
version='0.6.8',
description="Open Source Python library for generating semantic SVG maps",
long_description=long_desc,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: AGPL License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
keywords='',
author='Gregor Aisch',
author_email='[email protected]',
url='http://kartograph.org',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests', 'test.*']),
namespace_packages=[],
include_package_data=False,
zip_safe=False,
install_requires=[],
tests_require=[],
entry_points={
'console_scripts': [
'kartograph = kartograph.cli:main'
]
}
)