2013-03-10 17:59:50 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
2018-02-07 16:50:08 -02:00
|
|
|
|
2013-03-10 17:59:50 +01:00
|
|
|
from setuptools import setup, find_packages
|
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
|
|
|
|
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
|
|
|
|
entry_points={"console_scripts": ["qdarkstyle=qdarkstyle.__main__:main"]}
|
|
|
|
)
|