-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.33 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
[tool.poetry]
name = "django-controlled-vocabulary"
version = "0.12"
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 :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Operating System :: OS Independent",
]
include = [
"LICENSE",
]
packages = [
{include = "controlled_vocabulary"}
]
[tool.poetry.dependencies]
python = "^3.5"
django = ">=2.2,<3.3"
urllib3 = "^1.25"
# only included because they are referenced by .extras
tox = { version = "^3.0", optional = true }
coverage = { version = "^4.5", optional = true}
[tool.poetry.dev-dependencies]
tox = "^3.0"
coverage = "^4.5"
[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"