We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff72c91 commit e3a12faCopy full SHA for e3a12fa
1 file changed
setup.py
@@ -34,12 +34,14 @@
34
REQUIRES_PYTHON = ">=3.0"
35
HERE = os.path.abspath(os.path.dirname(__file__))
36
REQUIREMENTS = [
37
- "mercantile",
38
"mapbox-vector-tile",
39
- "pytest",
+ "mercantile",
+ "requests",
40
"vt2geojson",
41
+ "haversine",
42
"shapely",
43
"turfpy",
44
+ "geojson",
45
]
46
CLASSIFIERS = [
47
"Development Status :: 5 - Production/Stable",
@@ -117,6 +119,9 @@
117
119
packages=setuptools.find_packages(where="src"),
118
120
# # Specifiy the package directory
121
package_dir=PACKAGE_DIR,
122
+ # # A string or list of strings specifying what other distributions need to be installed
123
+ # # when this one is
124
+ install_requires=REQUIREMENTS,
125
# # What Python version is required
126
python_requires=REQUIRES_PYTHON,
127
# # What package data to include
0 commit comments