-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.44 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "logdir"
version = "0.13.0"
description = "A utility for managing logging directories."
authors = ["Bryon Tjanaka <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://logdir.btjanaka.net"
repository = "https://github.com/btjanaka/logdir"
documentation = "https://logdir.btjanaka.net"
keywords = ["log", "logging", "utilities"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Logging",
"Topic :: Utilities",
]
exclude = ["setup.cfg"]
[tool.poetry.dependencies]
python = "^3.7"
"ruamel.yaml" = ">0.15"
toml = ">=0.10"
dulwich = ">=0.20.0"
"python-slugify" = ">=4.0.0"
shortuuid = ">=1.0.11"
[tool.poetry.dev-dependencies]
isort = "^5.6.4"
yapf = "^0.30.0"
pylint = "^2.6.0"
mkdocs = "1.1.2"
mkdocs-material = "6.1.0"
mkdocstrings = "0.13.6"
jinja2 = "<3.1.0"
pymdown-extensions = "8.0.1"
pygments = "2.7.2"
pytest = "7.0.1"
pytest-cov = "3.0.0"
freezegun = "1.0.0"
bump2version = "0.5.11"
check-wheel-contents = "^0.2.0"
[tool.pytest.ini_options]
addopts = "-v --cov-report term-missing --cov=logdir tests/"