-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.56 KB
/
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
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
72
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "itaxotools-taxi-gui"
dynamic = ["version"]
description = "A Qt GUI for Taxi2"
readme = "README.md"
requires-python = ">=3.10.2, <4"
keywords = []
authors = [
{ name = "Stefanos Patmanidis", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"itaxotools-common",
"itaxotools-taxi2",
"pyside6",
]
[project.optional-dependencies]
dev = [
"setuptools-scm",
"pre-commit",
"ruff",
"pytest",
"pytest-qt",
"pytest-xvfb",
"pyinstaller",
"memory-profiler",
"matplotlib",
]
[project.gui-scripts]
taxi-gui = "itaxotools.taxi_gui:run"
[project.urls]
Homepage = "https://itaxotools.org/"
Source = "https://github.com/iTaxoTools/TaxIGui"
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools_scm]
[tool.ruff]
ignore-init-module-imports = true
extend-select = ["I"]
[tool.ruff.lint.isort]
known-first-party = ["itaxotools"]
section-order = [
"future",
"pyqt",
"standard-library",
"third-party",
"first-party",
"local-folder",
]
[tool.ruff.lint.isort.sections]
pyqt = ["PySide6"]