qt-material/setup.py

50 lines
1.3 KiB
Python
Raw Normal View History

2020-06-11 17:04:49 -05:00
import os
2020-12-22 14:34:27 -05:00
from setuptools import setup
2020-06-11 17:04:49 -05:00
2020-12-13 16:41:25 -05:00
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
2020-06-11 17:04:49 -05:00
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='qt-material',
2021-05-14 21:01:45 -05:00
version='2.8.8',
packages=['qt_material',
'qt_material.resources',
2021-02-12 10:11:53 -05:00
'qt_material.resources.source'],
2020-06-11 17:04:49 -05:00
author='Yeison Cardona',
2020-08-31 17:22:32 -05:00
author_email='yencardonaal@unal.edu.co',
2020-06-11 17:04:49 -05:00
maintainer='Yeison Cardona',
2020-08-31 17:22:32 -05:00
maintainer_email='yencardonaal@unal.edu.co',
2020-06-11 17:04:49 -05:00
download_url='https://github.com/UN-GCPDS/qt-material',
2020-06-11 17:04:49 -05:00
install_requires=['Jinja2'],
2020-06-11 17:04:49 -05:00
2021-01-21 12:06:42 -05:00
python_requires='>=3.7',
2020-11-17 11:55:40 -05:00
2020-06-11 17:04:49 -05:00
include_package_data=True,
2020-11-17 11:55:40 -05:00
license='BSD-2-Clause',
2020-12-11 11:42:58 -05:00
description="Qt Stylesheet for PySide6, PySide2 and PyQt5.",
2020-12-13 16:41:25 -05:00
long_description=README,
2020-12-13 16:50:01 -05:00
long_description_content_type='text/markdown',
2020-06-11 17:04:49 -05:00
classifiers=[
2020-12-05 23:51:11 -05:00
'Development Status :: 4 - Beta',
2020-12-11 11:42:58 -05:00
# 'Development Status :: 5 - Production/Stable',
2020-12-05 23:51:11 -05:00
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.9',
2020-12-05 23:51:11 -05:00
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
2020-06-11 17:04:49 -05:00
],
2021-05-07 19:37:20 +02:00
entry_points={
"pyinstaller40": [
"hook-dirs = qt_material:get_hook_dirs"
]
},
2020-06-11 17:04:49 -05:00
)