-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
60 lines (53 loc) · 1.2 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
[project]
name = "shrubbery"
description = "shrubbery"
version = "0.0.0"
authors = [
{ name = "altermarkive", email = "13467877+altermarkive@users.noreply.github.com" }
]
readme = "README.md"
requires-python = ">=3.13"
license = {text = "GNU General Public License v3.0"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"hydra-core>=1.3.2",
"keras>=3.11.1",
"lightgbm>=4.6.0",
"matplotlib>=3.10.5",
"minisom>=2.3.5",
"myfm==0.4.0",
"numerapi>=2.20.7",
"opentsne>=1.0.2",
"plotly>=6.2.0",
"pyarrow>=21.0.0",
"tabulate>=0.9.0",
"torch>=2.8.0",
"tpot>=1.1.0",
"wandb>=0.21.0",
]
[project.scripts]
shrubbery = "shrubbery:main.main"
[project.optional-dependencies]
dev = [
"mypy>=1.17.1",
"pdbpp>=0.11.7", # Extension of Python debugger
"ruff>=0.12.11",
"types-requests>=2.32.4.20250809",
"wat>=0.7.0", # Deep inspection of Python objects
]
[tool.uv.sources]
torch = [
{ index = "pytorch-cu129" },
]
[[tool.uv.index]]
name = "pytorch-cu129"
url = "https://download.pytorch.org/whl/cu129"
explicit = true
[tool.ruff]
line-length = 79
[tool.ruff.format]
quote-style = "single"
[tool.mypy]
ignore_missing_imports = true