File: setup.cfg

package info (click to toggle)
python-qtpy 2.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 924 kB
  • sloc: python: 4,767; sh: 28; makefile: 19
file content (62 lines) | stat: -rw-r--r-- 1,858 bytes parent folder | download
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
[metadata]
name = QtPy
version = attr: qtpy.__version__
description = Provides an abstraction layer on top of the various Qt bindings (PyQt5/6 and PySide2/6).
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/spyder-ide/qtpy
author = Colin Duquesnoy and the Spyder Development Team
author_email = spyder.python@gmail.com
maintainer = Spyder Development Team and QtPy Contributors
maintainer_email = spyder.python@gmail.com
license = MIT
license_files =
    AUTHORS.md
    LICENSE.txt
classifiers =
    Development Status :: 5 - Production/Stable
    Environment :: MacOS X
    Environment :: Win32 (MS Windows)
    Environment :: X11 Applications :: Qt
    Intended Audience :: Developers
    License :: OSI Approved :: MIT License
    Operating System :: OS Independent
    Programming Language :: Python :: 3
    Programming Language :: Python :: 3 :: Only
    Programming Language :: Python :: 3.7
    Programming Language :: Python :: 3.8
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3.10
    Programming Language :: Python :: 3.11
    Topic :: Software Development :: Libraries
    Topic :: Software Development :: User Interfaces
    Topic :: Software Development :: Widget Sets
keywords = qt PyQt5 PyQt6 PySide2 PySide6
project_urls =
    Github = https://github.com/spyder-ide/qtpy
    Bug Tracker = https://github.com/spyder-ide/qtpy/issues
    Parent Project = https://www.spyder-ide.org/

[options]
packages = find:
install_requires =
    packaging
python_requires = >=3.7
include_package_data = True
zip_safe = False

[options.packages.find]
exclude =
    contrib
    docs
    tests*

[options.entry_points]
console_scripts =
    qtpy = qtpy.__main__:main

[options.extras_require]
test =
    pytest!=7.0.0,!=7.0.1,>=6
    pytest-cov>=3.0.0
    pytest-qt