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(
|
2020-12-05 21:42:36 -05:00
|
|
|
name='qt-material',
|
2022-01-01 12:42:05 -05:00
|
|
|
version='2.8.19',
|
2021-03-26 09:22:41 -05:00
|
|
|
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
|
|
|
|
2020-12-05 21:42:36 -05:00
|
|
|
download_url='https://github.com/UN-GCPDS/qt-material',
|
2020-06-11 17:04:49 -05:00
|
|
|
|
2021-04-22 11:26:48 -05:00
|
|
|
install_requires=['Jinja2'],
|
2020-06-11 17:04:49 -05:00
|
|
|
|
2022-01-01 12:42:05 -05:00
|
|
|
python_requires='>=3.8',
|
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',
|
2021-12-20 21:10:20 -05:00
|
|
|
description="Material inspired stylesheet for PySide2, PySide6, PyQt5 and PyQt6.",
|
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',
|
2021-12-20 21:10:20 -05:00
|
|
|
'Programming Language :: Python :: 3.10',
|
2020-12-22 13:30:44 -05:00
|
|
|
'Programming Language :: Python :: 3.9',
|
2020-12-05 23:51:11 -05:00
|
|
|
'Programming Language :: Python :: 3.8',
|
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
|
|
|
)
|