forked from kingsdigitallab/django-controlled-vocabulary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.29 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
[tool.poetry]
name = "django-controlled-vocabulary"
version = "0.13"
description = "Link your data to authority lists or your own controlled lists"
authors = ["geoffroy-noel-ddh <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/kingsdigitallab/django-controlled-vocabulary"
repository = "https://github.com/kingsdigitallab/django-controlled-vocabulary"
keywords = ["controlled-vocabulary", "linked-data", "vocabulary", "metadata"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Operating System :: OS Independent",
]
include = ["LICENSE"]
packages = [{ include = "controlled_vocabulary" }]
[tool.poetry.dependencies]
python = "^3.9"
django = ">=4.2,<5.2"
urllib3 = "^2.2.3"
# only included because they are referenced by .extras
tox = { version = "^4.23.2", optional = true }
coverage = { version = "^7.6.4", optional = true }
[tool.poetry.dev-dependencies]
tox = "^4.23.2"
coverage = "^7.6.4"
setuptools = "^75.2.0"
[tool.poetry.extras]
# .extras used used by tox
# just references to [tool.poetry.dependencies]
# same as [tool.poetry.dev-dependencies]
toml_tox = ['tox', 'coverage']
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"