generated from agrc/python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (66 loc) · 1.93 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
"""
setup.py
A module that installs palletjack as a module
"""
from pathlib import Path
from setuptools import find_packages, setup
version = {}
with open("src/palletjack/version.py", encoding="utf-8") as fp:
exec(fp.read(), version)
setup(
name="ugrc-palletjack",
version=version["__version__"],
description="Updating AGOL feature services with data from external tables.",
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
author="Jake Adams, UGRC",
author_email="jdadams@utah.gov",
url="https://github.com/agrc/palletjack",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
zip_safe=True,
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
],
project_urls={
"Issue Tracker": "https://github.com/agrc/palletjack/issues",
},
keywords=["gis"],
install_requires=[
"arcgis>=2.3,<2.5",
"geopandas>=0.14,<1.1",
"geodatasets>=2023.12,<2024.9",
"pg8000>=1.29,<1.32",
"psycopg2-binary==2.9.*",
"pygsheets==2.0.*",
"pysftp==0.2.9",
"SQLAlchemy>=1.4,<2.1",
],
extras_require={
"tests": [
"pdoc3>=0.10,<0.12",
"pytest-cov>=3,<6",
"pytest-instafail~=0.4",
"pytest-mock>=3.10,<3.15",
"pytest-watch~=4.2",
"pytest>=6,<9",
"requests-mock==1.*",
"ruff==0.*",
]
},
setup_requires=[
"pytest-runner",
],
entry_points={
"console_scripts": [
"palletjack = palletjack.example:process",
]
},
)