-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1014 Bytes
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 1014 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "micro_deer"
version = "0.1.0"
description = "Minimal implementation of DEER, quasi-DEER, and ELK for parallelizing nonlinear dynamical systems"
authors = [{ name="Linderman Lab", email="haroldxaviergonzalez@gmail.com" }]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"jax>=0.4.38",
"equinox",
"optax",
"tqdm",
]
[project.optional-dependencies]
dev = [
"pytest",
"ipykernel",
"matplotlib",
"wandb<0.20.0",
"hydra-core",
"lightning",
"pandas",
"plotnine",
"jaxtyping",
]
metal = [
"jax-metal",
]
cuda = [
"jax[cuda12]",
]
[project.urls]
Homepage = "https://github.com/lindermanlab/micro_deer"
Repository = "https://github.com/lindermanlab/micro_deer"