-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 1.05 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
[build-system]
requires = ["setuptools", "wheel", "jax"]
build-backend = "setuptools.build_meta"
[project]
name = "splender"
dynamic = ["version"]
description = "Fit splines to images and videos through differentiable rendering."
readme = "README.md"
authors = [
{name = "Frans Zdyb", email = "frzd@di.ku.dk"},
]
license = {file = "LICENSE"}
keywords = ["jax", "differentiable-rendering", "centerline", "spline", "machine-learning"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = ["jax", "rustworkx", "scikit-image", "interpax==0.3.7", "matplotlib", "optax", "nvidia-cublas-cu12==12.9.0.13"]
[tool.setuptools.dynamic]
version = {attr = "splender.__version__"}
[project.urls]
"Homepage" = "https://github.com/kirkegaardlab/splender"
"Documentation" = "https://github.com/kirkegaardlab/splender"
"Source" = "https://github.com/kirkegaardlab/splender"
"Bug Tracker" = "https://github.com/kirkegaardlab/splender/issues"