forked from gmarull/qtmodern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 931 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
#!/usr/bin/env python
import re
from setuptools import setup
_version = re.search(r'__version__\s+=\s+\'(.*)\'',
open('qtmodern/__init__.py').read()).group(1)
setup(name='qtmodern',
version=_version,
packages=['qtmodern'],
description='Qt Widgets Modern User Interface',
long_description=open('README.rst').read(),
author='Gerard Marull-Paretas',
author_email='[email protected]',
url='https://www.github.com/gmarull/qtmodern',
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={
'qtmodern': ['resources/*']
},
install_requires=['qtpy>=1.3.1'])