-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 853 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (33 loc) · 853 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
[project]
name = "zdc"
version = "0.2.0"
description = "Even faster simulation of the Zero Degree Calorimeter responses with generative neural networks"
keywords = ["generative neural networks", "fast simulations", "high-energy physics", "zero degree calorimeter"]
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Maksymilian Wojnar", email = "mwojnar@agh.edu.pl"}
]
requires-python = ">=3.12"
dependencies = [
"cloudpickle~=3.1.0",
"flax~=0.9.0",
"jax~=0.4.34",
"lpips-j~=0.0.6",
"lz4~=4.3.3",
"optax~=0.2.3",
"seaborn~=0.13.2",
"scikit-learn~=1.5.2",
"tqdm~=4.66.5",
"wandb~=0.18.3"
]
[project.optional-dependencies]
export = [
"tensorflow~=2.18.0",
"tf2onnx~=1.16.1"
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["zdc"]