-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.46 KB
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>=77", "setuptools-scm",]
build-backend = "setuptools.build_meta"
[project]
name = "arches-querysets"
version = "1.1.1b0"
description = "A Django-native interface for Arches implementers to express application logic, query business data, and build APIs."
readme = "README.md"
requires-python = ">=3.10"
license = "AGPL-3.0-or-later"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [ "arches!=8.0.0,<8.2.0,>=7.6.12",]
dynamic = []
[[project.authors]]
name = "Arches Project"
[project.urls]
Homepage = "https://archesproject.org/"
Documentation = "https://arches.readthedocs.io"
Repository = "https://github.com/archesproject/arches-querysets.git"
Issues = "https://github.com/archesproject/arches-querysets/issues"
[project.optional-dependencies]
drf = [ "djangorestframework~=3.16",]
[tool.setuptools.packages.find]
include = [ "arches_querysets*",]
[dependency-groups]
dev = [ "black==24.4.2", "coverage", "django-silk==5.3.2", "livereload", "pre-commit==4.1.0", "sst",]