-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
99 lines (94 loc) · 2.71 KB
/
setup.cfg
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[metadata]
name = qts
version = attr: qts.__version__
author = Kyle Altendorf
author_email = [email protected]
license = MIT
url = https://github.com/altendky/qts
project_urls =
Documentation = https://qts.readthedocs.io/
Issues = https://github.com/python-qt-tools/qts/issues
Repository = https://github.com/python-qt-tools/qts
Tests = https://github.com/python-qt-tools/qts/actions?query=branch%%3Amain
Coverage = https://codecov.io/gh/python-qt-tools/qts
Distribution = https://pypi.org/project/qts
description = a thin compatibility layer for Python code to use Qt through various wrappers
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = GUI, Qt, PyQt5, PySide2, PyQt6, PySide6
classifiers =
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Software Development :: User Interfaces
[options]
python_requires = >=3.7
install_requires =
# >= 20.1.0 for attr.frozen
attrs >= 20.1.0
typing-extensions >= 3.10
include_package_data = True
zip_safe = False
package_dir = =src
packages = find:
[options.entry_points]
console_scripts =
qts = qts._cli:main
[options.extras_require]
pyqt5 =
pyqt5 ~=5.15
pyside2 =
pyside2 ~= 5.15
pyqt6 =
pyqt6 ~= 6.0
pyside6 =
pyside6 ~= 6.0
cli =
click ~= 8.0
p_checks =
black == 22.10.0; python_version >= '3.7'
check-manifest ~= 0.46.0
flake8 ~= 3.8
mypy == 0.901
%(s_pytest)s
%(s_towncrier)s
p_docs =
importlib_metadata ~= 4.5
%(pyside2)s
sphinx ~= 4.0
sphinx-autodoc-typehints ~= 1.11
sphinx-click ~= 3.0
sphinx-inline-tabs ~= 2020.10.19b4
sphinx-qt-documentation ~= 0.3.0
sphinx_rtd_theme ~= 0.5.0
%(s_towncrier)s
p_tests =
%(cli)s
coverage ~= 5.5
%(s_pytest)s
pytest-cov ~= 2.12
pytest-xvfb ~= 2.0; sys_platform == "linux"
s_pytest =
pytest ~= 6.2
s_towncrier =
towncrier ~= 21.3
[options.packages.find]
where = src
[versioneer]
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
VCS = git
style = pep440
versionfile_source = src/qts/_version.py
versionfile_build = qts/_version.py
tag_prefix = ''