2013-03-10 17:59:50 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: utf-8 -*-
|
2019-05-04 07:28:37 -05:00
|
|
|
"""
|
|
|
|
|
A dark style sheet for QtWidgets application.
|
|
|
|
|
"""
|
2018-02-07 16:50:08 -02:00
|
|
|
|
2019-05-04 07:28:37 -05:00
|
|
|
# Standard library imports
|
2013-03-10 17:59:50 +01:00
|
|
|
from setuptools import setup, find_packages
|
2019-05-04 07:28:37 -05:00
|
|
|
|
|
|
|
|
# Local imports
|
2015-04-09 16:01:51 +02:00
|
|
|
from qdarkstyle import __version__
|
2018-02-07 16:50:08 -02:00
|
|
|
from qdarkstyle import __doc__ as long_desc
|
2014-02-20 13:31:58 +01:00
|
|
|
|
2019-05-03 15:03:46 -03:00
|
|
|
|
2019-05-06 14:20:04 -03:00
|
|
|
install_requires = ['helpdev>=0.6.2']
|
2019-05-03 15:03:46 -03:00
|
|
|
|
|
|
|
|
extras_require = {
|
2019-05-06 14:20:04 -03:00
|
|
|
'develop': ['qtsass', 'watchdog'],
|
|
|
|
|
'docs':['sphinx','m2r','sphinx_rtd_theme'],
|
|
|
|
|
'example': ['pyqt5', 'pyside2', 'qtpy>=1.7']
|
2019-05-03 15:03:46 -03:00
|
|
|
}
|
|
|
|
|
|
2013-03-10 17:59:50 +01:00
|
|
|
setup(
|
|
|
|
|
name='QDarkStyle',
|
2015-04-09 16:01:51 +02:00
|
|
|
version=__version__,
|
2013-03-10 17:59:50 +01:00
|
|
|
packages=find_packages(),
|
|
|
|
|
url='https://github.com/ColinDuquesnoy/QDarkStyleSheet',
|
2014-01-02 15:57:14 +01:00
|
|
|
license='MIT',
|
2013-03-10 17:59:50 +01:00
|
|
|
author='Colin Duquesnoy',
|
|
|
|
|
author_email='colin.duquesnoy@gmail.com',
|
2018-02-07 16:50:08 -02:00
|
|
|
description='A dark stylesheet for Python and Qt applications',
|
|
|
|
|
long_description=long_desc,
|
2014-01-02 16:41:43 +01:00
|
|
|
classifiers=[
|
2018-02-07 16:50:08 -02:00
|
|
|
'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 :: 2.7',
|
|
|
|
|
'Programming Language :: Python :: 3.2',
|
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
|
'Topic :: Software Development :: Libraries :: Application Frameworks'
|
2018-10-25 16:43:17 -03:00
|
|
|
],
|
|
|
|
|
zip_safe=False, # don't use eggs
|
2019-05-03 15:03:46 -03:00
|
|
|
entry_points={"console_scripts": ["qdarkstyle=qdarkstyle.__main__:main"]},
|
|
|
|
|
extras_require=extras_require,
|
|
|
|
|
install_requires=install_requires
|
2018-10-25 16:43:17 -03:00
|
|
|
)
|