-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
71 lines (61 loc) · 2.33 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Installation setup."""
# ================================================================
# author :Ghislain Vieilledent
# email :[email protected]
# web :https://ecology.ghislainv.fr
# python_version :>=3.6
# license :GPLv3
# ================================================================
# Import
import io
import re # Regular expression
from setuptools import setup
# 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("pywdpa")
# 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/pywdpa',
'Source': 'https://github.com/ghislainv/pywdpa/',
'Traker': 'https://github.com/ghislainv/pywdpa/issues',
}
# Setup
setup(name="pywdpa",
version=version,
author="Ghislain Vieilledent",
author_email="[email protected]",
url="https://ecology.ghislainv.fr/pywdpa",
project_urls=project_urls,
license="GPLv3",
description="Easy access to world's protected areas",
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="protected areas wdpa world database protected areas",
python_requires=">=3.6",
packages=["pywdpa"],
package_dir={"pywdpa": "pywdpa"},
entry_points={"console_scripts": ["pywdpa = pywdpa.pywdpa:main"]},
install_requires=["numpy", "gdal", "requests"],
extras_require={
"interactive": ["jupyter", "python-dotenv", "geopandas",
"descartes", "folium"]},
zip_safe=False)
# End