-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
32 lines (29 loc) · 1.01 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
from setuptools import setup, find_packages
version = '1.2'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='qtwidgets',
version=version,
author='Martin Fitzpatrick',
author_email='martin.fitzpatrick@gmail.com',
description='Custom widget library for PyQt6, PyQt5, PySide6 and PySide2 (Qt for Python). Free to use in your own applications.',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/learnpyqt/python-qtwidgets',
license='MIT',
packages=find_packages(),
install_requires=[
'markdown',
],
include_package_data=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Desktop Environment',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Widget Sets',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'
]
)