-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (33 loc) · 1.27 KB
/
setup.py
File metadata and controls
executable file
·37 lines (33 loc) · 1.27 KB
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
#!/usr/bin/python3
# coding=utf8
from setuptools import setup, find_packages
setup(
name = "choropleth-gen",
version = "0.2",
packages = ['choropleth_gen'],
install_requires=['pyparsing',],
entry_points={
'console_scripts': [
'gen_greyscale_choropleth=choropleth_gen.gen_greyscale_choropleth:main',
'gen_spectral_choropleth=choropleth_gen.gen_spectral_choropleth:main',
],
},
# metadata for upload to PyPI
author = "Luís Moreira de Sousa",
author_email = "luis.de.sousa@protonmail.ch",
description = "Choropleth generator for QGIS and other SLD able software.",
license = "EUPL v1.1",
keywords = "choropleth QGis SLD",
url = "https://github.com/ldesousa/choropleth-gen", # project home page, if any
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: European Union Public Licence 1.1 (EUPL 1.1)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
],
# could also include long_description, download_url, classifiers, etc.
)