-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (55 loc) · 1.57 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
from setuptools import setup
setup(
name="honeycomb",
version="1.3.0",
license="MIT",
description="CLI tool for managing AGRC base map caches (vector & raster).",
long_description="",
author="Scott Davis",
author_email="[email protected]",
url="https://github.com/agrc/honeycomb",
packages=["honeycomb"],
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Topic :: Utilities",
],
keywords=[],
install_requires=[
"arcgis>=2",
"colorama>=0",
"docopt>=0",
"google-cloud-storage>=2",
"google-cloud-logging>=3",
"humanize>=4",
"p_tqdm>=1",
"pygsheets>=2",
"requests<2.32", #: https://github.com/Esri/arcgis-python-api/issues/1834
"sendgrid>=6",
"tabulate>=0",
"tqdm>=4",
],
dependency_links=[],
extras_require={
"test": [
"black",
"mock",
"pytest-benchmark",
"pytest-cov",
"pytest-env",
"pytest-ruff",
"pytest-watch",
"pytest",
"requests_mock" "ruff",
]
},
entry_points={"console_scripts": ["honeycomb = honeycomb.__main__:main"]},
)