-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (50 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
53 lines (50 loc) · 1.11 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
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tomosipo"
version = "0.7.0"
description = "A usable Python astra-based tomography library."
readme = "README.md"
license = "GPL-3.0-only"
authors = [
{ name = "Allard Hendriksen", email = "allard.hendriksen@cwi.nl" },
]
requires-python = ">=3.6"
keywords = [
"tomography",
]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"astra-toolbox>=2.0,!=2.3.0",
"numpy>=1.21",
]
[project.optional-dependencies]
dev = [
"autopep8",
"autopep8",
"black",
"coverage",
"flake8",
"importmagic",
"jedi",
"pytest",
"pytest-runner",
"recommonmark",
"rope",
"snakeviz",
"sphinx",
"sphinx-autodoc-typehints",
"sphinx_rtd_theme",
"watchdog",
"yapf",
]
[project.urls]
Homepage = "https://github.com/ahendriksen/tomosipo"