-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (61 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
75 lines (61 loc) · 1.44 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "torch-bspline"
dynamic = ["version"]
description = "A simple library for using b-splines in pytorch."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "Hugo Melchers", email = "h.a.melchers@tue.nl"},
{ name = "Jeffrey Cochran", email = "jeffrey.david.cochran@gmail.com"},
]
keywords = ["bpsline", "b-spline", "spline", "pytorch", "torch", "spline", "interpolation", "approximation"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"torch~=2.5.1",
"numpy~=1.26.4",
"scipy~=1.13.1",
"matplotlib"
]
[project.urls]
Homepage = "https://github.com/jeffrey-cochran/torch_bspline"
Issues = "https://github.com/jeffrey-cochran/torch_bspline/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
test = [
"pytest",
"hypothesis",
"tabulate",
"PyQt6",
]
dev = [
"pytest",
"hypothesis",
"tabulate",
"PyQt6",
"black",
]
[tool.hatch.version]
path = "src/torch_bspline/__about__.py"
[tool.hatch.build.targets.wheel]
packages = [
"src/torch_bspline"
]
[tool.hatch.envs.test]
template = "default"
features = [
"test"
]
[tool.hatch.envs.dev]
template = "default"
features = [
"dev"
]