-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 944 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (43 loc) · 944 Bytes
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
[project]
name = "cranberry"
version = "0.1.3"
description = ""
authors = [{ name = "Wookyung Jeong", email = "77jwk0724@gmail.com" }]
requires-python = ">=3.11.0, <3.12"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = []
[project.optional-dependencies]
viz = [
"graphviz>=0.20.3,<0.21",
]
datasets = [
"tqdm>=4.66.4,<5",
]
numpy = [
"numpy>=2.0",
]
all = [
"graphviz>=0.20.3,<0.21",
"tqdm>=4.66.4,<5",
"numpy>=2.0",
]
[dependency-groups]
dev = [
"pyright>=1.1.405,<2",
"ruff>=0.5.4,<0.6",
"pytest>=8.3.1,<9",
"torch>=2.3.1,<3",
"maturin>=1.7.1,<2",
"matplotlib>=3.10.6",
"scikit-learn>=1.7.2",
"numpy>=2.0",
]
[build-system]
requires = ["maturin>=0.13"]
build-backend = "maturin"