-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.61 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
[build-system]
requires = ["setuptools>=79.0", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "autoarray"
dynamic = ["version"]
description="PyAuto Data Structures"
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { text = "MIT" }
requires-python = ">=3.9"
authors = [
{ name = "James Nightingale", email = "James.Nightingale@newcastle.ac.uk" },
{ name = "Richard Hayes", email = "richard@rghsoftware.co.uk" },
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
keywords = ["cli"]
dependencies = [
"autoconf",
"astropy>=5.0,<=6.1.2",
"decorator>=4.0.0",
"dill>=0.3.1.1",
"matplotlib>=3.7.0",
"scipy<=1.14.0",
"scikit-image<=0.24.0",
"scikit-learn<=1.5.1",
"tqdm"
]
[project.urls]
Homepage = "https://github.com/Jammy2211/PyAutoArray"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["docs", "test_autoarray", "test_autoarray*"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"
[project.optional-dependencies]
optional=[
"numba",
"pynufft",
"tensorflow-probability==0.25.0"
]
test = ["pytest"]
dev = ["pytest", "black"]
[tool.pytest.ini_options]
testpaths = ["test_autoarray"]