-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.25 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "arches_lingo"
readme = "README.md"
authors = [
{name = "Farallon Geographics, Inc", email = "[email protected]"}
]
license = {text = "GNU AGPL3"}
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Django",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
requires-python = ">=3.11"
dependencies = [
"arches >= 8.0.0a0",
"arches_vue_utils @ git+https://github.com/archesproject/arches-vue-utils.git@main",
"arches_references @ git+https://github.com/archesproject/arches-references.git@main",
]
version = "0.0.1"
[project.optional-dependencies]
dev = [
"livereload",
"sst",
"coverage",
"django-silk==5.1.0",
"pre-commit",
"black==24.4.2",
]
[tool.setuptools]
packages = ["arches_lingo"]