-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 782 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 782 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
[project]
name = "mora-the-explorer"
version = "1.8.1"
description = "A small program for downloading NMR spectra at the Organic Chemistry department at the University of Münster"
authors = [
{ name = "Matthew J. Milner", email = "matterhorn103@proton.me" }
]
dependencies = [
"darkdetect>=0.8.0",
"platformdirs>=4.2.0",
"plyer>=2.1.0",
"pillow>=10.3.0",
"pyside6-essentials>=6.7.0",
"tomli-w>=1.0.0",
]
readme = "README.md"
requires-python = ">= 3.12"
[project.scripts]
mora-the-explorer = "mora_the_explorer.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pyinstaller>=6.6.0",
]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = [
"."
]