-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 863 Bytes
/
pyproject.toml
File metadata and controls
29 lines (24 loc) · 863 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
authors = [{ name = "Fang Han", email = "fhan0904@gmail.com" }]
dependencies = ["numpy", "rich", "mpi4py", "h5py", "pyyaml", "jsonschema"]
name = "pyrecon"
dynamic = ["version"]
description = "SPEBT project, a Python package for image reconstruction"
readme = { file = "README.md", content-type = "text/markdow" }
requires-python = ">=3.9.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.setuptools_scm]
[project.urls]
Homepage = "https://github.com/spebt/pyrecon/"
Issues = "https://github.com/spebt/pyrecon/issues"
Documentation = "https://spebt.github.io/pyrecon/"
[tool.setuptools]
include-package-data = true
package-dir = {""="src"}