2013-03-10 12:59:50 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
2018-02-07 13:50:08 -05:00
|
|
|
|
2013-03-10 12:59:50 -04:00
|
|
|
from setuptools import setup, find_packages
|
2015-04-09 10:01:51 -04:00
|
|
|
from qdarkstyle import __version__
|
2018-02-07 13:50:08 -05:00
|
|
|
from qdarkstyle import __doc__ as long_desc
|
2014-02-20 07:31:58 -05:00
|
|
|
|
2013-03-10 12:59:50 -04:00
|
|
|
setup(
|
|
|
|
name='QDarkStyle',
|
2015-04-09 10:01:51 -04:00
|
|
|
version=__version__,
|
2013-03-10 12:59:50 -04:00
|
|
|
packages=find_packages(),
|
|
|
|
url='https://github.com/ColinDuquesnoy/QDarkStyleSheet',
|
2014-01-02 09:57:14 -05:00
|
|
|
license='MIT',
|
2013-03-10 12:59:50 -04:00
|
|
|
author='Colin Duquesnoy',
|
|
|
|
author_email='colin.duquesnoy@gmail.com',
|
2018-02-07 13:50:08 -05:00
|
|
|
description='A dark stylesheet for Python and Qt applications',
|
|
|
|
long_description=long_desc,
|
2014-01-02 10:41:43 -05:00
|
|
|
classifiers=[
|
2018-02-07 13:50:08 -05: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'
|
|
|
|
])
|