-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 887 Bytes
/
pyproject.toml
File metadata and controls
39 lines (32 loc) · 887 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
33
34
35
36
37
38
39
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "diffct"
version = "1.3.1"
description = "A CUDA-based library for computed tomography (CT) projection and reconstruction with differentiable operators"
readme = "README.md"
authors = [
{name = "Yipeng Sun", email = "yipeng.sun@fau.de"},
]
license = {text = "Apache 2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
dependencies = [
"numpy",
"numba",
"torch",
]
[project.urls]
Homepage = "https://github.com/sypsyp97/diffct"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
where = ["."]
[tool.hatch.envs.default]
python = "python"
[tool.hatch.envs.default.env-vars]