-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
71 lines (63 loc) · 1.65 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
64
65
66
67
68
69
70
71
[project]
name = "rascal"
version = "0.4.0"
description = "A library for automated spectrometer wavelength calibration."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "BSD-3-Clause"}
authors = [
{name = "Josh Veitch-Michaelis", email = "j.veitchmichaelis@gmail.com"},
{name = "Marco C Lam", email = "mlam@roe.ac.uk"}
]
maintainers = [
{name = "Josh Veitch-Michaelis", email = "j.veitchmichaelis@gmail.com"},
{name = "Marco C Lam", email = "mlam@roe.ac.uk"}
]
urls = { Homepage = "https://rascal.readthedocs.io/en/latest/?badge=latest", Download = "https://github.com/jveitchmichaelis/rascal" }
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent"
]
dependencies = [
"kaleido>=1.1.0",
"matplotlib>=3.10.6",
"numpy>=2.2.6",
"pynverse>=0.1.4.6",
"scipy>=1.15.3",
"tqdm>=4.67.1",
]
[tool.setuptools]
package-dir = {"" = "src"}
zip-safe = false
include-package-data = true
[tool.ruff]
line-length = 127
lint.select = ["E", "F"]
lint.ignore = ["E741"]
exclude = ["*.ipynb"]
fix = false
[tool.setuptools.packages.find]
where = ["src"]
[tool.coverage.run]
relative_files = true
[dependency-groups]
dev = [
"astropy>=6.1.7",
"coverage>=7.10.7",
"plotly>=6.3.1",
"pre-commit>=4.3.0",
"psutil>=7.1.0",
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"requests>=2.32.5",
"ruff>=0.14.0",
]
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
]