-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.28 KB
/
pyproject.toml
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
[build-system]
# Defined by PEP 518:
requires = [
# for version management
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "ODTbrain"
authors = [
# In alphabetical order.
{ name = "Paul Müller" },
]
maintainers = [
{ name = "Paul Müller", email = "dev@craban.de" },
]
description = "Algorithms for diffraction tomography"
readme = "README.rst"
requires-python = ">=3.5, <4"
keywords = ["odt", "opt", "diffraction", "born", "rytov", "radon",
"backprojection", "backpropagation", "inverse problem",
"Fourier diffraction theorem", "Fourier slice theorem"]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
"Intended Audience :: Science/Research"
]
license = {file = "LICENSE"}
dependencies = [
"numexpr",
"numpy>=1.7.0",
"pyfftw>=0.9.2,<1",
"scikit-image>=0.21.0,<1",
"scipy>=1.4.0,<2"
]
dynamic = ["version"]
[project.urls]
source = "https://github.com/RI-imaging/ODTbrain"
tracker = "https://github.com/RI-imaging/ODTbrain/Issues"
[tool.setuptools_scm]
write_to = "odtbrain/_version.py"
version_scheme = "post-release"
[tool.setuptools.packages.find]
where = ["."]
include = ["odtbrain"]