-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (57 loc) · 1.63 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
"""
setup.py
A module that installs auditor as a module
"""
from glob import glob
from os.path import basename, splitext
from setuptools import find_packages, setup
setup(
name="auditor",
version="3.0.4",
license="MIT",
description=(
"Audits all hosted feature service items in a user's AGOL folders for proper tags, sharing, etc based on "
"an external metatable"
),
author="Jake Adams",
author_email="[email protected]",
url="https://github.com/agrc/auditor",
packages=find_packages("src"),
package_dir={"": "src"},
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
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 :: System Administrators",
"Topic :: Utilities",
],
project_urls={
"Issue Tracker": "https://github.com/agrc/auditor/issues",
},
keywords=["gis"],
install_requires=[
"docopt==0.6.*",
"arcgis==2.*",
"agrc-supervisor==3.0.*",
],
extras_require={
"tests": [
"pytest-cov>=3,<7",
"pytest-instafail==0.5.*",
"pytest-mock==3.*",
"pytest-ruff==0.*",
"pytest-watch==4.*",
"pytest>=6,<9",
"ruff==0.0.*",
"pytest-mock>=3.10,<3.15",
]
},
setup_requires=[
"pytest-runner",
],
entry_points={"console_scripts": ["auditor = auditor.cli:cli"]},
)