-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (44 loc) · 1.04 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
[project]
name = "euros"
dynamic = ["dependencies", "optional-dependencies"]
version = "0.0.1"
[tool.poetry]
authors = [
"James Day <[email protected]>",
]
description = "Dash App for a game built for Euros 2024."
keywords = ["Euros", "2024"]
license = "MIT"
# packages = [
# {include = "euros"},
# ]
readme = "README.md"
repository = "https://github.com/jday1/euros.python"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {lint = {file = ["requirements_lint.txt"]}, test = {file = ["requirements_test.txt"]}}
[tool.setuptools]
py-modules = ["euros"]
[tool.mypy]
ignore_missing_imports = true
plugins = "pydantic.mypy"
python_version = "3.12"
show_error_codes = true
warn_return_any = true
warn_unused_configs = true
[tool.coverage.run]
omit = [
"*/tests/**",
]
parallel = true
[tool.coverage.report]
fail_under = 100.00
precision = 2
show_missing = true
[tool.black]
include = '\.pyi?$|\.py$|\.ipynb$'
[tool.pydocstyle]
add-ignore = "D100"
convention = "google"
[tool.isort]
profile = "black"