Skip to content

Commit e3a12fa

Browse files
committed
Add all dependencies to setup.py
1 parent ff72c91 commit e3a12fa

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,14 @@
3434
REQUIRES_PYTHON = ">=3.0"
3535
HERE = os.path.abspath(os.path.dirname(__file__))
3636
REQUIREMENTS = [
37-
"mercantile",
3837
"mapbox-vector-tile",
39-
"pytest",
38+
"mercantile",
39+
"requests",
4040
"vt2geojson",
41+
"haversine",
4142
"shapely",
4243
"turfpy",
44+
"geojson",
4345
]
4446
CLASSIFIERS = [
4547
"Development Status :: 5 - Production/Stable",
@@ -117,6 +119,9 @@
117119
packages=setuptools.find_packages(where="src"),
118120
# # Specifiy the package directory
119121
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,
120125
# # What Python version is required
121126
python_requires=REQUIRES_PYTHON,
122127
# # What package data to include

0 commit comments

Comments
 (0)