forked from pythonguis/python-qtwidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 973 Bytes
/
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
from setuptools import setup, find_packages
version = '0.19'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='qtwidgets',
version=version,
author='Martin Fitzpatrick',
author_email='[email protected]',
description='Custom widget library for PyQt5 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(),
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'
]
)