-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (58 loc) · 1.58 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "itaxotools-abcd-validator"
dynamic = ["version"]
description = "A graphical user interface for checking whether your data is suitable for conversion into the ABCD format"
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",
"pyside6",
]
[project.optional-dependencies]
dev = [
"setuptools-scm",
"pre-commit",
"ruff",
"pyinstaller",
]
[project.scripts]
abcd-validator = "itaxotools.abcd_validator.__main__:run"
[project.urls]
Homepage = "https://itaxotools.org/"
Source = "https://github.com/iTaxoTools/abcd-validator"
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools_scm]
[tool.ruff]
ignore-init-module-imports = true
extend-select = ["I"]
line-length = 140
[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"]