-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml.in
More file actions
71 lines (63 loc) · 1.56 KB
/
pyproject.toml.in
File metadata and controls
71 lines (63 loc) · 1.56 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "djehuty"
version = "@VERSION@"
authors = [{ name="Roel Janssen", email="r.r.e.janssen@tudelft.nl" }]
description = "The 4TU.ResearchData and Nikhef data repository system"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"Jinja2>=3.0.3",
"pygit2>=1.6.1",
"rdflib>=6.0.0",
"requests>=2.26.0",
"Werkzeug>=2.0.2",
"defusedxml>=0.7.1",
"pillow>=9.4.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Environment :: Web Environment",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://data.4tu.nl/"
"Source Code" = "https://github.com/4TUResearchData/djehuty"
"Bug Tracker" = "https://github.com/4TUResearchData/djehuty/issues"
[project.scripts]
djehuty = "djehuty.ui:main"
[dependency-groups]
dev = [
"boto3",
"coverage[toml]>=7.0",
"Faker>=37.12.0",
"playwright>=1.40.0",
"pytest>=7.4.0",
"pytest-playwright>=0.4.4",
"pytest-rerunfailures>=14.0",
"python-slugify>=8.0.0",
]
[tool.coverage.run]
source = ["djehuty"]
branch = true
parallel = true
[tool.coverage.paths]
source = [
"src/djehuty",
"/app/src/djehuty",
"*/site-packages/djehuty",
]
[tool.coverage.report]
show_missing = true
skip_empty = true
omit = [
"src/djehuty/backup/*",
]
[tool.coverage.html]
directory = "coverage-html"