-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
71 lines (66 loc) · 2.15 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
"""
pygohome setup.py
"""
import re
from pathlib import Path
from setuptools import find_packages, setup
NAME = "pygohome"
KEYWORDS = ["gps", "navigation", "routing", "bicycle", "walk", "optimal route"]
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Jupyter",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering :: GIS",
]
INSTALL_REQUIRES = [
"gpxpy >= 1.4.2",
"ipyleaflet >= 0.13.3",
"ipywidgets >= 7.5.1",
"networkx >= 2.5",
"notebook >= 6.1.5",
"numpy >= 1.19.4",
"pandas >= 1.1.5",
"scipy >= 1.5.4",
"utm >= 0.7.0",
]
# --+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----
if __name__ == "__main__":
HERE = Path(__file__).resolve().parent
META_FILE = (HERE / "src" / NAME / "__init__.py").read_text()
META = dict(
re.findall(r"^__(\w+)__ = ['\"]([^'\"]*)['\"]", META_FILE, re.M)
)
setup(
name=NAME,
description=META["description"],
license=META["license"],
url=META["url"],
version=META["version"],
author=META["author"],
author_email=META["email"],
maintainer=META["author"],
maintainer_email=META["email"],
keywords=KEYWORDS,
long_description=Path("README.rst").read_text(),
long_description_content_type="text/x-rst",
packages=find_packages(where="src"),
package_dir={"": "src"},
zip_safe=False,
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
extras_require={"test": ["pytest"]},
options={},
include_package_data=True,
)