-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
26 lines (23 loc) · 1.03 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
import sys
import setuptools
setuptools.setup(
name='pyqtconfig',
version="0.9.2",
author='Martin Fitzpatrick',
author_email='martin.fitzpatrick@gmail.com',
url='https://github.com/learnpyqt/pyqtconfig',
description='An API for keeping PyQt widgets in sync with a config dictionary or QSettings object.',
long_description='pyqtconfig is a simple API for keeping a config dict in sync with PyQt widgets. \
Updating the widget automagically updates the dict; updating the dict updates the widget. Internal support \
for both dictionary config, QSettings and config XML import/export. Combo and list boxes also support \
mapping from display->internal values.',
packages=setuptools.find_packages(),
keywords='pyqt desktop gui pyqt5 qt pyqt6 pyside6 pyside2',
license='GPL',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.4',
)