-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (62 loc) · 1.64 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
[tool.poetry]
authors = ["Stig B. Dørmænen <[email protected]>"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
description = "A library for mapping a concept collection to rdf"
documentation = "https://concepttordf.readthedocs.io"
homepage = "https://github.com/Informasjonsforvaltning/concepttordf"
license = "Apache-2.0"
name = "concepttordf"
readme = "README.md"
repository = "https://github.com/Informasjonsforvaltning/concepttordf"
version = "2.0.2"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
rdflib = "^6.0.0"
[tool.poetry.dev-dependencies]
Pygments = "^2.6.1"
Sphinx = "^5.1.1"
black = "^22.3.0"
codecov = "^2.0.16"
coverage = {extras = ["toml"], version = "^6.3.2"}
darglint = "^1.2.0"
flake8 = "^4.0.1"
flake8-annotations = "^2.0.1"
flake8-bandit = "^3.0.0"
flake8-black = "^0.3.2"
flake8-bugbear = "^22.3.23"
flake8-docstrings = "^1.5.0"
flake8-import-order = "^0.18.1"
mypy = "^0.971"
nox = "^2022.1.7"
nox-poetry = "^1.0.0"
pytest = "^7.1.1"
pytest-cov = "^3.0.0"
pytype = "^2022.4.6"
safety = "^2.1.1"
sphinx-autodoc-typehints = "^1.19.2"
xdoctest = "^1.0.2"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = false
source = ["concepttordf"]
[tool.coverage.report]
fail_under = 100
show_missing = true
[tool.mypy]
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
strict = false
warn_unreachable = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = []
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]