-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
112 lines (82 loc) · 2.08 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[tool.poetry]
name = "minilog"
version = "2.3.1"
description = "Minimalistic wrapper for Python logging."
license = "MIT"
authors = ["Jace Browning <[email protected]>"]
readme = "README.md"
packages = [{ include = "log" }]
homepage = "https://pypi.org/project/minilog"
documentation = "https://minilog.readthedocs.io"
repository = "https://github.com/jacebrowning/minilog"
keywords = ["logging"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: System :: Logging",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
# Formatters
black = "^24.3"
isort = "^5.10"
# Linters
pylint = "~2.15"
pydocstyle = "*"
mypy = "^1.3"
types-freezegun = "*"
# Testing
pytest = "^7.2"
pytest-describe = "^2.0"
pytest-expecter = "^3.0"
pytest-ordering = "*"
pytest-cov = "^4.1"
pytest-repeat = "*"
pytest-profiling = "*"
freezegun = "*"
# Reports
coveragespace = "^6.0.1"
# Documentation
mkdocs = "~1.2"
pygments = "^2.15.0"
jinja2 = "~3.0"
# Tooling
pyinstaller = "*"
sniffer = "*"
MacFSEvents = { version = "*", platform = "darwin" }
pync = { version = "*", platform = "darwin" }
ipython = "^7.16.3"
[tool.black]
quiet = true
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
no_implicit_optional = true
check_untyped_defs = true
cache_dir = ".cache/mypy/"
[tool.pytest.ini_options]
addopts = """
--strict-markers
-r sxX
--show-capture=log
--cov-report=html
--cov-report=term-missing:skip-covered
--no-cov-on-fail
"""
cache_dir = ".cache/pytest/"
markers = ["first", "last"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"