-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 824 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (29 loc) · 824 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "random-walk-microstructures"
version = "1.0.0"
description = "This repository contains the code for our ACM SCF 2025 paper \"Random-Walk Microstructures for Differentiable Topology Optimization.\""
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "Samuel Silverman et al." },
]
maintainers = [
{ name = "Samuel Silverman", email = "sssilver@bu.edu" },
]
dependencies = [
"matplotlib==3.9.2",
"numpy==1.26.4",
"scikit-image==0.24.0",
"scikit-learn==1.5.2",
"torch==2.2.2",
"tqdm==4.68.2",
"triangle==20230923",
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]