-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 893 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 893 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
[project]
name = "synth"
version = "0.1.0"
description = "Automated Synthesis Framework"
authors = [
{ name = "Théo Matricon", email = "theomatricon@gmail.com" },
{ name = "Nathanaël Fijalkow", email = "nathanael.fijalkow@gmail.com" },
]
requires-python = ">=3.10"
readme = "README.md"
license = "MIT"
dependencies = [
"torch>=1.13.1",
"tensorboard>=0",
"cython>=0.29",
"numpy>=1.22",
"vose",
"colorama>=0.4.4",
"tqdm>=4.63.0",
"matplotlib>=3.5.1",
"pltpublish>=0.1.0",
]
[project.urls]
Repository = "https://github.com/SynthesisLab/DeepSynth2"
[dependency-groups]
dev = [
"ruff>= 0.4.3",
"pytest>=7.2.0",
"mypy>=0.910",
]
[tool.uv.sources]
vose = { git = "https://github.com/Theomat/vose.git" }
grape = { git = "https://github.com/SynthesisLab/grape.git" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"