-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (50 loc) · 1.1 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
[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",
]
[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",
]
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.vulture]
make_whitelist = true
sort_by_size = true
verbose = true
min_confidence = 100
paths = ["src/iokit"]