-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (81 loc) · 1.53 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
87
[tool.black]
line-length = 88
target-version = ['py39']
include = '\.py$'
exclude = '''
(
/(
\.
| \.git
| \.mypy_cache
| \.tox
| \.venv
| \.pytest_cache
| \.idea
| \.cache
| bin
| config
| build
| dist
)/
)
'''
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-v --durations=10 -p no:logging -s --ignore .venv --cov=envotate --cov-fail-under=100 --cov-report=term-missing"
testpaths = ["tests"]
pythonpath = [".", "envotate"]
norecursedirs = [
"data",
"static",
"node_modules",
"bin",
"dist",
"build",
"docs",
".mypy_cache",
".pytest_cache",
".secret",
".txt",
".idea",
".git",
".venv",
"*.egg",
".eggs",
".git",
".github",
".poetry",
"__pycache__",
]
[tool.isort]
profile = "black"
skip_gitignore = true
add_imports = "from __future__ import annotations"
[tool.poetry]
name = "envotate"
version = "0.0.1"
description = "Settings management using environment variables and type annotations."
authors = ["Jordan Eremieff <[email protected]>"]
license = "MIT"
packages = [{ include = "envotate" }]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
black = "*"
setuptools = "^62.3.2"
twine = "^4.0.0"
wheel = "^0.37.1"
flake8 = "^4.0.1"
mypy = "^0.960"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
codecov = "^2.1.12"
mkdocs = "^1.3.0"
mkdocs-material = "^8.2.15"
Pygments = "^2.12.0"
pymdown-extensions = "^9.4"
rich = "^12.4.4"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"