-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (55 loc) · 1.32 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
54
55
56
57
58
59
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fibermc"
version = "0.0.4"
authors = [
{ name="Nick Richardson", email="[email protected]" },
]
description = "A Jax-based differentiable Monte Carlo estimator with applications to differentiable simulation, computational geometry, and topology optimization."
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords=[
"optimization",
"jax",
"implicit differentiation",
"topology optimization",
"computational geometry"
]
dependencies = [
"chex>=0.1.87",
"jax>=0.4.30",
"jaxlib>=0.4.30",
"ml_dtypes>=0.5.0",
"numpy>=2.0.0",
"opt_einsum>=3.4.0",
"scipy>=1.13.1",
]
[project.optional-dependencies]
shapely = [
"shapely>=2.0.6",
]
jaxopt = [
"jaxopt>=0.8.3",
]
all = [
"fibermc[shapely]",
"fibermc[jaxopt]",
]
[project.urls]
Homepage = "https://github.com/PrincetonLIPS/fibers-standalone/tree/main"
Issues = "https://github.com/PrincetonLIPS/fibers-standalone/issues"
[tool.hatch.build.targest.sdist]
exclude = [
"/.examples",
"/.notebooks",
]