-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 869 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 869 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "DGet"
version = "1.0.2"
dependencies = [
"numpy >= 2.0",
"molmass",
]
description = "Calculates compound deuteration from ToF-MS data."
readme = "README.rst"
requires-python = ">= 3.9"
license = "GPL-3.0-or-later"
authors = [{name = "Thomas Lockwood", email = "thomas.lockwood@uts.edu.au"}]
[project.optional-dependencies]
test = ["pytest"]
gui = ["PySide6 != 6.9.1", "pyqtgraph"]
[project.urls]
Homepage = "https://dget.app"
Repository = "https://gtihub.com/djdt/dget"
Documentation = "https://dget.readthedocs.io"
[project.scripts]
dget = "dget:__main__.main"
[project.gui-scripts]
dget-gui = "dget.gui:__main__.main"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true