-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
38 lines (35 loc) · 1.29 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
37
38
from setuptools import setup
setup(
name='Nik4',
version='1.8.0',
license='WTFPL',
description='Command-line interface to a Mapnik rendering toolkit',
long_description="""
Nik4
====
This is a mapnik-to-image exporting script. It requires only ``mapnik-python`` bindings.
Install it with ``pip install nik4`` or ``easy_install nik4`` and run with ``-h`` option
to see available options and their descriptions.
.. _See documentation here: https://github.com/Zverik/Nik4/blob/master/README.md
""",
url='https://github.com/Zverik/Nik4',
author='Ilya Zverev',
author_email='zverik@textual.ru',
platforms=['any'],
requires=['Mapnik'],
keywords='Mapnik,GIS,OpenStreetMap,mapping,export',
scripts=['nik4.py'],
packages=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Printing',
'Topic :: Utilities'
]
)