-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
84 lines (74 loc) · 2.68 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# ==============================================================================
# author :Ghislain Vieilledent
# email :[email protected], [email protected]
# web :https://ecology.ghislainv.fr
# python_version :>=2.7
# license :GPLv3
# ==============================================================================
# Import
import io
import re
from setuptools import setup, find_packages
# find_version
def find_version(pkg_name):
"""Finding package version."""
with open(f"{pkg_name}/__init__.py", encoding="utf-8") as init_file:
init_text = init_file.read()
_version = (re.search('^__version__\\s*=\\s*"(.*)"',
init_text, re.M)
.group(1))
return _version
version = find_version("riskmapjnr")
# reStructuredText README file
with io.open("README.rst", encoding="utf-8") as f:
long_description = f.read()
# Project URLs
project_urls = {
'Documentation': 'https://ecology.ghislainv.fr/riskmapjnr',
'Source': 'https://github.com/ghislainv/riskmapjnr',
'Traker': 'https://github.com/ghislainv/riskmapjnr/issues',
}
# Setup
setup(name="riskmapjnr",
version=version,
author="Ghislain Vieilledent",
author_email="[email protected]",
url="https://github.com/ghislainv/riskmapjnr",
license="GPLv3",
description="Mapping deforestation risk following JNR methodology",
long_description=long_description,
long_description_content_type="text/x-rst",
classifiers=["Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 "
"(GPLv3)",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics"],
keywords="carbon deforestation emissions forests jnr map probability"
"redd risk tropics vcs",
python_requires=">=3.6",
packages=find_packages(),
package_dir={"riskmapjnr": "riskmapjnr"},
package_data={
"riskmapjnr": ["data/fcc123_GLP.tif",
"data/ctry_border_GLP.gpkg"]
},
include_package_data=True,
entry_points={
"console_scripts": ["riskmapjnr = riskmapjnr.riskmapjnr:main"]
},
install_requires=[
"gdal",
"numpy",
"matplotlib",
"pandas",
"scipy",
],
extras_require={
"interactive": ["jupyter", "geopandas", "descartes", "folium",
"tabulate"]
},
zip_safe=False)
# End