-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
86 lines (75 loc) · 1.92 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-vcs"]
[project]
authors = [{name = "Repronim developers", email = "[email protected]"}]
dependencies = [
"click",
"etelemetry",
"pyshacl",
"PyLD",
"requests",
"requests_cache",
"pyyaml",
"beautifulsoup4",
"lxml",
"pydantic >= 2.0",
"pandas"
]
description = "Reproschema Python library"
# Version from setuptools_scm
dynamic = ["version"]
license = {text = "Apache License, 2.0"}
maintainers = [{name = "Repronim developers", email = "[email protected]"}]
name = "reproschema"
readme = "README.md"
requires-python = ">=3.10"
[project.optional-dependencies]
all = ["reproschema[doc]", "reproschema[test]"]
dev = ["reproschema[doc]", "reproschema[test]", "black", "pre-commit"]
doc = [
"packaging",
"sphinx >= 2.1.2",
"sphinx_rtd_theme",
"sphinxcontrib-apidoc ~= 0.3.0",
"sphinxcontrib-napoleon",
"sphinxcontrib-versioning"
]
docs = ["reproschema[doc]"]
# For running unit and docstring tests
test = [
"pytest >= 4.4.0",
"pytest-cov",
"pytest-env",
"pytest-xdist",
"pytest-rerunfailures",
"codecov"
]
tests = ["reproschema[test]"]
[project.scripts]
reproschema = "reproschema.cli:main"
[project.urls]
Homepage = "https://github.com/ReproNim/reproschema-py"
[tool.black]
line-length = 79
[tool.codespell]
exclude-file = "CHANGELOG.md"
ignore-words = "codespell_ignore_words.txt"
skip = "./.git"
[tool.hatch.build.hooks.vcs]
version-file = "reproschema/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["reproschema"]
[tool.hatch.version]
source = "vcs"
[tool.isort]
combine_as_imports = true
line_length = 79
profile = "black"
skip_gitignore = true
[tool.pytest.ini_options]
addopts = "-ra --strict-config --strict-markers --doctest-modules --showlocals -v"
doctest_optionflags = "NORMALIZE_WHITESPACE ELLIPSIS"
junit_family = "xunit2"
minversion = "6.0"
xfail_strict = true