forked from y-scope/clp-loglib-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (58 loc) · 1.35 KB
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
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "clp_logging"
version = "0.0.10"
license = { text = "Apache License 2.0" }
authors = [
{ name="david lion", email="david.lion@yscope.com" },
]
description = "Logging/encoding/decoding using CLP's IR stream format"
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
"clp-ffi-py >= 0.0.1",
"python-dateutil >= 2.7.0",
"typing-extensions >= 3.7.4",
"zstandard >= 0.18.0",
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
]
[project.optional-dependencies]
dev = [
"black >= 22.10.0",
"build >= 0.8.0",
"docformatter >= 1.5.1",
"mypy >= 0.982",
"ruff >= 0.0.275",
"types-python-dateutil >= 2.8.19.2",
]
test = [
"smart_open >= 6.3.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
select = ["E", "I", "F"]
src = ["src"]
[tool.ruff.isort]
order-by-type = false
[tool.setuptools_scm]