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
|
#! /usr/bin/env python
# encoding: utf-8
import io
from setuptools import setup, find_packages
NAME = "AnyQt"
VERSION = "0.2.0"
AUTHOR = "Aleš Erjavec"
AUTHOR_EMAIL = "ales.erjavec@fri.uni-lj.si"
URL = "https://github.com/ales-erjavec/anyqt"
PACKAGES = find_packages(".", include="AnyQt*")
DESCRIPTION = "PyQt5/PyQt6 compatibility layer."
with io.open("README.txt", encoding="utf-8") as f:
README = f.read()
LICENSE = "GPLv3"
CLASSIFIERS = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
]
KEYWORDS = [
"GUI", "PyQt4", "PyQt5", "PySide", "PySide2", "compatibility"
]
PROJECT_URLS = {
"Bug Reports": "https://github.com/ales-erjavec/anyqt/issues",
"Source": URL,
"Documentation": "https://anyqt.readthedocs.io/en/stable/"
}
if __name__ == "__main__":
setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
description=DESCRIPTION,
long_description=README,
license=LICENSE,
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
packages=PACKAGES,
project_urls=PROJECT_URLS,
python_requires=">=3.6",
)
|