-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
executable file
·35 lines (32 loc) · 1.01 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
[build-system]
requires = ["setuptools", "wheel"]
[project.urls]
"Homepage"= "https://github.com/AlexanderFengler/LANFactory"
"Bug Tracker"= "https://github.com/AlexanderFengler/LANFactory/issues"
[project]
name= "lanfactory"
version= "0.4.6"
authors= [{name = "Alexander Fenger", email = "[email protected]"}]
description= "Package with convenience functions to train LANs"
readme = "README.md"
requires-python= ">3.10, <3.13"
classifiers= [
"Development Status :: 1 - Planning",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"
]
dependencies=[
"NumPy >= 1.17.0",
"SciPy >= 1.6.3",
"pandas >= 1.2.4",
"torch >= 1.7",
"jax >= 0.4.14",
"flax >= 0.6.4",
"optax >= 0.1.4",
"tqdm >= 4.0.0",
]
keywords= ["LANs", "generative models", "cognitive science", "neuroscience", "sbi"]
[project.optional-dependencies]
dev = ["black", "ruff", "pytest"]