-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (30 loc) · 915 Bytes
/
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
[build-system]
requires = ["setuptools", "numpy>=2.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pewpew"
version = "1.7.0"
dependencies = [
"numpy>=1.22",
"pewlib>=0.10.1",
"pyqtgraph",
"PySide6",
]
description = "GUI for visualisation and manipulation of LA-ICP-MS data."
readme = "README.md"
requires-python = ">= 3.9"
license = {file = "LICENSE"}
authors = [{name = "Thomas Lockwood", email = "thomas.lockwood@uts.edu.au"}]
[project.optional-dependencies]
tests = ["pytest", "pytest-qt"]
[project.urls]
Repository = "https://gtihub.com/djdt/pewpew"
Documentation = "https://pew2.readthedocs.io"
Publication = "https://doi.org/10.1021/acs.analchem.1c02138"
[project.scripts]
pewpew = "pewpew.__main__:main"
[tool.pytest.ini_options]
filterwarnings = [
# https://github.com/pytest-dev/pytest-qt/issues/558
"ignore:Failed to disconnect .* from signal:RuntimeWarning",
]