-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (68 loc) · 1.48 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
[project]
name = "iokit"
description = "Input Output Kit"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dynamic = ["version"]
authors = [
{name = "Vladislav A. Proskurov", email = "[email protected]"},
]
dependencies = [
"humanize>=4.9.0",
"jsonlines>=4.0.0",
"python-dateutil>=2.8.2",
"python-dotenv>=1.0.1",
"PyYAML>=6.0.1",
"pytz>=2024.1",
"requests>=2.32.3",
"typing-extensions>=4.8.0",
"cryptography>=41.0.7",
"numpy>=1.21.1",
"soundfile>=0.12.1",
"pandas>=1.5.3",
"loguru>=0.7.2",
"Pillow>=10.4.0",
"xxhash>=3.4.1",
]
[tool.setuptools.dynamic]
version = {attr = "iokit.__version__"}
[project.optional-dependencies]
dev = ["iokit[lint,test]"]
lint = [
"mypy>=1.7.1",
"ruff>=0.6.3",
"types-pytz>=2024.1",
"types-requests>=2.31.0",
"types-PyYAML>=6.0.12",
"types-python-dateutil>=2.8.19",
]
test = [
"pytest>=8.2.2",
"pytest-cov>=5.0.0",
]
[project.urls]
Homepage = "https://github.com/rilshok/iokit"
Repository = "https://github.com/rilshok/iokit.git"
Issues = "https://github.com/rilshok/iokit/issues"
[tool.mypy]
strict = true
[tool.ruff]
line-length = 100
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM",# flake8-simplify
"I", # isort
]
[tool.vulture]
make_whitelist = true
sort_by_size = true
verbose = false
min_confidence = 100
paths = ["src/iokit"]