forked from gmarull/qtmodern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 884 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 884 Bytes
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
#!/usr/bin/env python
import qtmodern6
from setuptools import setup
_version = qtmodern6.__version__
setup(name='qtmodern6',
version=_version,
packages=['qtmodern6'],
description='PySide6 Widgets Modern User Interface',
long_description=open('README.rst', encoding='utf-8').read(),
author='hua Layn',
author_email='layn@jinkuni.com',
url='https://www.github.com/hualayn/qtmodern6',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: User Interfaces'
],
package_data={
'qtmodern6': ['resources/*']
},
install_requires=['PySide6>=6.0.0'])