-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.24 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
[project]
authors = [
{ name = "Utrecht University Yoda team", email = "yoda@uu.nl" }
]
dependencies = [
'Flask==3.1.3'
]
description = "Yoda Web Mock"
license = "GPL-3.0-only"
name = "yoda_web_mock"
dynamic = ["version"]
[project.urls]
Homepage = "https://www.uu.nl/en/research/yoda"
Documentation = "https://utrechtuniversity.github.io/yoda/"
Repository = "https://github.com/utrechtuniversity/yoda"
Issues = "https://github.com/utrechtuniversity/yoda/issues"
[build-system]
requires = ["setuptools >= 82.0.1", "setuptools_scm[toml]>=7"]
build-backend = "setuptools.build_meta"
[tool.flake8]
import-order-style= "smarkets"
strictness = "short"
docstring_style = "sphinx"
max-line-length = 127
application-import-names = [
"yoda_web_mock.datacite.routes",
"yoda_web_mock.sram.database",
"yoda_web_mock.sram.routes"
]
[tool.setuptools]
packages = ["yoda_web_mock"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
[tools.mypy]
ignore_missing_imports = true
warn_unreachable = true
no_implicit_optional = true
check_untyped_defs = false
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_calls = false
disallow_untyped_defs = false
show_error_codes = true
show_error_context = true