-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
53 lines (47 loc) · 1.28 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "simple-einet"
version = "0.0.1"
authors = [{name = "Steven Braun", email = "[email protected]"}]
description = "An efficient PyTorch implementation of EinsumNetworks."
readme = "README.md"
license = {file = "LICENSE.md"} # If you have a LICENSE file
requires-python = ">=3.10"
urls = { GitHub = "https://github.com/braun-steven/simple-einet" }
dependencies = [
"numpy~=1.26.1",
"torch~=2.0",
# "fast_pytorch_kmeans~=0.2.0",
"fast_pytorch_kmeans@git+https://github.com/DeMoriarty/fast_pytorch_kmeans#egg=1d41c5bda5647e344da3d5432f81f96f6fe21cf6",
"psutil~=6.0.0", # Req. by fast_pytorch_kmeans
"tqdm~=4.0",
"scipy~=1.14.0",
"imageio~=2.36.0"
]
[project.optional-dependencies]
# Local development
dev = [
"parameterized~=0.9.0",
"pytest",
]
# For local application in e.g. main.py files
app = [
"matplotlib~=3.8.0",
"seaborn~=0.13.0",
"omegaconf~=2.3.0",
"lightning~=2.0",
"Pillow~=10.0",
"rtpt~=0.0.4",
"scikit_learn~=1.3.0",
"torchvision~=0.15",
"hydra_colorlog~=1.2.0",
"wandb~=0.15.0",
"rich~=13.0",
"hydra-core~=1.3.0"
]
[tool.black]
line-length = 120
[tool.setuptools]
packages = ["simple_einet"]