-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
69 lines (60 loc) · 1.47 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
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "clp_logging"
version = "0.0.12"
license = { text = "Apache License 2.0" }
authors = [
{ name="david lion", email="[email protected]" },
]
description = "Logging/encoding/decoding using CLP's IR stream format"
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"backports.zoneinfo >= 0.2.1; python_version < '3.9'",
"clp-ffi-py >= 0.0.11",
"typing-extensions >= 3.7.4",
"tzlocal == 5.1; python_version < '3.8'",
"tzlocal >= 5.2; python_version >= '3.8'",
"zstandard >= 0.18.0",
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
]
[project.optional-dependencies]
dev = [
"black >= 24.4.0",
"build >= 0.8.0",
"docformatter >= 1.7.5",
"mypy >= 1.9.0",
"ruff >= 0.3.7",
"types-python-dateutil >= 2.8.19.2",
]
test = [
"smart_open == 6.4.0",
]
[project.urls]
"Homepage" = "https://github.com/y-scope/clp-loglib-py"
"Bug Tracker" = "https://github.com/y-scope/clp-loglib-py/issues"
[tool.black]
line-length = 100
target-version = ["py311"]
color = true
preview = true
[tool.docformatter]
make-summary-multi-line = true
pre-summary-newline = true
recursive = true
wrap-summaries = 80
wrap-descriptions = 80
[tool.mypy]
strict = true
pretty = true
[tool.ruff]
line-length = 100
src = ["src"]
[tool.ruff.lint]
isort.order-by-type = false
select = ["E", "I", "F"]
[tool.setuptools_scm]