forked from mottosso/Qt5.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.09 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
import os
from setuptools import setup
os.environ["QT_PREFERRED_BINDING"] = "None"
version = __import__("Qt5").__version__
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
setup(
name="Qt5.py",
version=version,
description="Python 2 & 3 compatibility wrapper around PyQt5 and PySide2",
author="Marcus Ottosson",
author_email="[email protected]",
url="https://github.com/mottosso/Qt5",
license="MIT",
zip_safe=False,
data_files=["LICENSE"],
py_modules=["Qt5"],
classifiers=classifiers
)