-
Notifications
You must be signed in to change notification settings - Fork 143
/
pyproject.toml
115 lines (108 loc) · 2.96 KB
/
pyproject.toml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "arches"
readme = "README.md"
authors = [
{name = "Farallon Geographics, Inc", email = "[email protected]"}
]
license = {text = "GNU AGPL3"}
requires-python = ">=3.10"
description = "Arches is an open-source, web-based, geospatial information system for cultural heritage inventory and management."
keywords = ["django", "arches", "cultural heritage"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 4.2",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
]
dependencies = [
"arcgis2geojson==2.0.0",
"celery==5.3.6",
"defusedxml==0.7.1",
"Django>=4.2.16,<5.0.0",
"django-celery-results==2.5.1",
"django-cors-headers==4.2.0",
"django-guardian==2.4.0",
"django-hosts==6.0.0",
"django-oauth-toolkit==1.7.0",
"django-ratelimit==4.1.0",
"django-recaptcha==3.0.0",
"django-revproxy==0.12.0",
"django-webpack-loader==2.0.1",
"edtf==4.0.1",
"elasticsearch>=8.3.1,<9.0.0",
"filetype==1.2.0",
"openpyxl==3.1.2",
"pillow>=7.0.0",
"polib==1.1.1",
"psycopg2==2.9.9",
"pycryptodome<4.0.0,>=3.3.1",
"pyjwt>=2.0.0,<3",
"pyjwt[crypto]",
"PyLD[requests]==1.0.5",
"pyotp>=2.6.0",
"pyprind==2.11.3",
"pyshp==2.1.2",
"python-memcached==1.59",
"python-slugify==7.0.0",
"pytz==2023.3",
"qrcode>=7.3.1",
"rdflib==4.2.2",
"requests-oauthlib==1.3.1",
"requests[security]>=2.31.0",
"semantic-version==2.10.0",
"SPARQLWrapper==1.8.5",
"tomli==2.0.1;python_version<'3.11'",
"tzdata==2023.3",
"urllib3<2",
]
[project.optional-dependencies]
dev = [
"black==24.4.2",
"coverage",
"django-silk==5.1.0",
"livereload",
"pre-commit==3.8.0",
"sst",
]
[project.scripts]
arches-admin = "arches.install.arches_admin:main"
arches-project = "arches.install.arches_project:main"
[project.urls]
Homepage = "https://archesproject.org/"
Documentation = "https://arches.readthedocs.io"
Repository = "https://github.com/archesproject/arches.git"
Issues = "https://github.com/archesproject/arches/issues"
[tool.setuptools.dynamic]
version = {attr = "arches.__version__"}
[tool.setuptools.packages.find]
exclude = ["*.tests", "*.tests.*", "tests.*", "tests"]
namespaces = false
[tool.black]
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''