-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.57 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8", "PyQt5", "PySide6", "requests"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "release-branch-semver"
local_scheme = "no-local-version"
[tool.setuptools.packages.find]
include = ["qtutils", "qtutils.*"]
[project]
name = "qtutils"
description = "PySide6/PyQt5 abstraction layer, mulithreading and UI loader utilities, icon set, and more"
authors = [
{name = "Philip Starkey", email = "threepineapples@gmail.com"},
{name = "Chris Billington", email = "chrisjbillington@gmail.com"},
]
keywords = ["Qt", "PyQt", "PySide"]
license = {file = 'LICENSE.txt'}
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.8"
dependencies = ["setuptools_scm>=8"]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/philipstarkey/qtutils"
Documentation = "https://readthedocs.org/projects/qtutils/"
Repository = "https://github.com/philipstarkey/qtutils"
Downloads = "https://pypi.org/project/qtutils/"
Tracker = "https://github.com/philipstarkey/qtutils/issues"
[project.optional-dependencies]
pyqt5 = ["PyQt5"]
pyside6 = ["PySide6"]
docs = [
"PyQt5",
"PySide6",
"Sphinx>=7.0.0",
"sphinx-rtd-theme>=1.3.0",
"recommonmark>=0.7.1",
"myst-parser",
]
[tool.setuptools_conda]
conda_name_differences = {PyQt5 = "pyqt"}
channels = ["conda-forge"] # PySide6 is only in conda-forge
ignore_run_exports = ["pyqt", "python_abi"]