-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
85 lines (69 loc) · 2.59 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
85
from distutils.command.build_py import build_py
from setuptools import setup, find_packages
package = "pp2n"
# Get __version__ from package/__init__.py
with open(package + "/__init__.py", "r") as f:
exec(f.readline())
description = "Populated Polygons to Networks — pp2n"
# Fetch README.md for the `long_description`
with open("README.md", "r", encoding="utf-8") as file:
long_description = file.read()
def _get_requirements_from_files(groups_files):
"""Returns a dictionary of all requirements keyed by type of requirement.
Parameters
----------
groups_files : dict
k - descriptive name, v - file name (including extension)
Returns
-------
groups_reqlist : dict
k - descriptive name, v - list of required packages
"""
groups_reqlist = {}
for k, v in groups_files.items():
with open(v, "r") as f:
pkg_list = f.read().splitlines()
groups_reqlist[k] = pkg_list
return groups_reqlist
def setup_package():
"""sets up the python package"""
_groups_files = {
"conda": "requirements_conda.txt",
"testing": "requirements_testing.txt",
}
reqs = _get_requirements_from_files(_groups_files)
reqs = [r for k, v in reqs.items() for r in v]
setup(
name=package,
version=__version__,
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jGaboardi/" + package,
download_url="https://pypi.org/project/" + package,
maintainer="James D. Gaboardi",
maintainer_email="jgaboardi@gmail.com",
keywords="network-allocation, spatial-networks, population-allocation, gis, population-representation",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
license="3-Clause BSD",
packages=find_packages(),
py_modules=[package],
install_requires=reqs,
zip_safe=False,
cmdclass={"build.py": build_py},
python_requires=">=3.7",
)
if __name__ == "__main__":
setup_package()