File: setup.py

package info (click to toggle)
nik4 1.8-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 764 kB
  • sloc: python: 567; xml: 325; makefile: 12
file content (38 lines) | stat: -rw-r--r-- 1,322 bytes parent folder | download
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'
        ]
)