-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.62 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
[tool.poetry]
name = "clarin_centre_registry"
description = "CLARIN Centre Registry Django project configuration"
version = "0.0.0dev"
license = "../LICENSE.txt"
authors = [
"Beatriz Sanchez Bribian",
"Michał Gawor <[email protected]>",
"Sander Maijers",
"André Moreira<[email protected]>",
]
maintainers = [
"Michał Gawor <[email protected]>",
"Andre Moreira <[email protected]>",
]
packages = [
{ include = "centre_registry_project", from = "Centre-Registry-config" },
{ include = "centre_registry", from = "centre-registry-app" },
]
[tool.poetry.urls]
changelog = "https://github.com/clarin-eric/Centre-Registry/blob/master/LICENSE.txt"
documentation = "https://github.com/clarin-eric/Centre-Registry/"
homepage = "https://centres.clarin.eu/"
repository = "https://github.com/clarin-eric/Centre-Registry/"
[tool.poetry.dependencies]
python = '>=3.11.*,<4.0'
Django = '4.2.11'
django-debug-toolbar = '4.3.0'
djangorestframework = '3.15.1'
[tool.poetry.group.test.dependencies]
lxml = '5.2.1'
selenium = '4.19.0'
jsonschema = '4.21.1'
django-test-migrations = '1.3.0'
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
pattern = "^(?P<base>\\d+\\.\\d+\\.\\d+)(-?((?P<stage>[a-zA-Z]+)\\.?(?P<revision>\\d+)?))?"
format-jinja = """
{%- if distance == 0 -%}
{{ serialize_pep440(base, stage, revision) }}
{%- else -%}
{{ serialize_pep440(base, stage, revision, dev=distance, metadata=[commit]) }}
{%- endif -%}
"""
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"