forked from spyder-ide/qtpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
86 lines (69 loc) · 2.88 KB
/
setup.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup script for qtpy
"""
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
version_ns = {}
with open(os.path.join(here, 'qtpy', '_version.py')) as f:
exec(f.read(), {}, version_ns)
LONG_DESCRIPTION = """
.. image:: https://img.shields.io/pypi/v/QtPy.svg
:target: https://pypi.python.org/pypi/QtPy/
:alt: Latest PyPI version
.. image:: https://img.shields.io/pypi/dm/QtPy.svg
:target: https://pypi.python.org/pypi/QtPy/
:alt: Number of PyPI downloads
QtPy: Abtraction layer for PyQt5/PyQt4/PySide
=============================================
**QtPy** (pronounced *'cutie pie'*) is a small abstraction layer that lets you
write applications using a single api call to either PyQt or PySide.
It provides support for PyQt5, PyQt4 and PySide using the PyQt5 layout (where
the QtGui module has been split into QtGui and QtWidgets).
Basically, you write your code as if you were using PyQt5 but import qt from
``qtpy`` instead of ``PyQt5``.
- `Issue tracker`_
- `Changelog`_
Attribution and acknowledgements
--------------------------------
This project is based on the `pyqode.qt`_ project and the `spyderlib.qt`_
module from the `spyder`_ project.
Unlike **pyqode.qt** this is not a namespace package so it is not *tied*
to a particular project, or namespace.
.. _spyder: https://github.com/spyder-ide/spyder
.. _spyderlib.qt: https://github.com/spyder-ide/spyder/tree/master/spyderlib/qt
.. _pyqode.qt: https://github.com/pyQode/pyqode.qt
.. _Changelog: https://github.com/spyder-ide/qtpy/blob/master/CHANGELOG.md
.. _Issue tracker: https://github.com/spyder-ide/qtpy/issues
"""
setup(
name='QtPy',
version=version_ns['__version__'],
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
keywords=["qt PyQt4 PyQt5 PySide"],
url='https://github.com/spyder-ide/qtpy',
license='MIT',
author='Colin Duquesnoy, The Spyder Development Team',
author_email='[email protected]',
maintainer='Gonzalo Peña-Castellanos',
maintainer_email='[email protected]',
description='Provides an abstraction layer on top of the various Qt '
'bindings (PyQt5, PyQt4 and PySide) and additional custom '
'QWidgets.',
long_description=LONG_DESCRIPTION,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: Qt',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5']
)