-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.53 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (46 loc) · 1.53 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lime-stable"
version = "2.4.3"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.12"
license = {text = "GPL-3.0-or-later"}
classifiers = ["License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.12"]
authors = [{name = "Vital Fernández", email = "vgf@stsci.edu"}]
description = "Line measuring algorithm for astronomical spectra"
dependencies = ["astropy>=8.0",
"lmfit>=1.3",
"matplotlib>=3.10",
"numpy>=2.0,<3",
"pandas>=3.0,<4",
"scipy>=1.18"]
[project.optional-dependencies]
full = ["asdf~=4.1",
"aspect-stable~=0.8",
"bokeh>=3.9",
"mplcursors~=0.6",
"openpyxl~=3.1",
"PyLaTeX~=1.4",
"toml~=0.10",]
docs = ["sphinx~=9.1.0",
"sphinx-rtd-theme~=3.1",
"sphinx_togglebutton~=0.4.5",
"sphinx_book_theme~=1.2",
"ipympl~=0.10",
"myst-nb~=1.4"]
tests = ["pytest~=9.1.1",
"pytest-cov~=7.1.0",
"pytest-mpl~=0.19.0"]
[tool.pytest.ini_options]
pythonpath = ["src"]
mpl-baseline-path = 'tests/baseline'
mpl-results-path = 'tests/outputs'
mpl-results-always = false
markers = ["mpl: matplotlib image comparison tests"]
addopts = "-p no:asdf_schema_tester"
[tool.coverage.run]
omit = ["src/lime/resources/generator_db.py",
"src/lime/resources/generator_logo.py"]