-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (63 loc) · 1.59 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
77
78
79
80
[tool.poetry]
name = "shimmer"
version = "0.6.0.dev"
description = "A light GLoW"
authors = ["bdvllrs <bdvllrs@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.11"
numpy = "^1.26"
pandas = "^2.2.2"
matplotlib = "^3.9.1"
migrate-ckpt = {git = "https://github.com/bdvllrs/migrate-ckpt.git", rev = "v0.2.0"}
click = "^8.1.7"
lightning = ">=2.1.0"
torch = "^2.0.1"
[tool.poetry.group.dev.dependencies]
types-tqdm = "^4.65.0.1"
lxml-stubs = "^0.5.1"
pandas-stubs = "^2.2.3.241009"
types-pillow = "^10.2.0.20240520"
types-pywin32 = "^308.0.0.20241015"
types-setuptools = "^75.2.0.20241019"
types-tabulate = "^0.9.0.2"
types-dataclasses = "^0.6.6"
types-pyyaml = "^6.0.12.20240808"
mypy = "^1.12.1"
ruff = "^0.7.0"
pre-commit = "^4.0.1"
types-protobuf = "^5.28.0.20240924"
types-redis = "^4.6.0.20241004"
types-python-dateutil = "^2.9.0.20241206"
types-six = "^1.17.0.20241205"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
pdoc = "^15.0.0"
[tool.poetry.scripts]
shimmer = "shimmer.cli:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
ignore_missing_imports = true
install_types = true
check_untyped_defs = true
exclude = ["examples/*"]
[tool.ruff]
target-version = "py311"
extend-exclude = [
"__pycache__",
".mypy_cache",
"docs/api",
".github",
]
[tool.ruff.lint]
select = ["E", "W", "F", "UP", "B", "SIM", "I"]
[tool.ruff.format]
docstring-code-format = true
[tool.pyright]
# reportIncompatibleMethodOverride = "none"