-
Notifications
You must be signed in to change notification settings - Fork 730
/
setup.py
executable file
·71 lines (65 loc) · 2.36 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
A dark style sheet for QtWidgets application.
"""
# Standard library imports
from setuptools import find_packages, setup
# Local imports
from qdarkstyle import __doc__ as long_desc
from qdarkstyle import __version__
install_requires = ['qtpy>=2']
extras_require = {
'develop': ['qtsass', 'watchdog'],
'docs': ['sphinx', 'sphinx_rtd_theme'],
'example': ['pyqt5', 'pyside2']
}
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: Qt',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries :: Application Frameworks'
]
setup(
name='QDarkStyle',
version=__version__,
packages=find_packages(),
url='https://github.com/ColinDuquesnoy/QDarkStyleSheet',
license='MIT',
author='Colin Duquesnoy',
author_email='[email protected]',
description='The most complete dark/light style sheet for C++/Python and Qt applications',
long_description=long_desc,
long_description_content_type='text/x-rst',
include_package_data=True, # add data file from MANIFEST.in #193
package_data={ # add data files when installing package #299
"": ["*",
"dark/rc/*",
"light/rc/*",
"qss/*",
"svg/*",
],
},
classifiers=classifiers,
zip_safe=False, # don't use eggs
entry_points={"console_scripts": ["qdarkstyle=qdarkstyle.__main__:main",
"qdarkstyle.example=qdarkstyle.example.__main__:main",
"qdarkstyle.utils=qdarkstyle.utils.__main__:main"]},
extras_require=extras_require,
install_requires=install_requires,
project_urls={
"Issues": "https://github.com/ColinDuquesnoy/QDarkStyleSheet/issues",
"Docs": "https://qdarkstylesheet.readthedocs.io/en/stable",
}
)