-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1.16 KB
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "repulsive-curves"
version = "0.1.0"
description = "Projected gradient descent for repulsive polygonal curve energies."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Renzo Muzzarelli" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
]
[project.scripts]
repcurve-flow = "repulsive_curves.run_gradient_flow:main"
repcurve-view = "repulsive_curves.curve_evolution_visualization:main"
repcurve-plot-energy = "repulsive_curves.plot_energy_histories:main"
[tool.setuptools.packages.find]
where = ["src"]