qt-material/setup.py

44 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:
2022-05-01 14:53:06 -05:00
README = readme.read()
2020-06-11 17:04:49 -05:00
# allow setup.py to be run from any path
2022-05-01 14:53:06 -05:00
os.chdir(
os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))
)
2020-06-11 17:04:49 -05:00
setup(
name='qt-material',
2023-02-06 19:39:21 -05:00
version='2.14',
2022-05-01 14:53:06 -05:00
packages=[
'qt_material',
'qt_material.resources',
'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',
download_url='https://github.com/UN-GCPDS/qt-material',
install_requires=['Jinja2'],
2022-02-23 19:06:20 -05:00
python_requires='>=3.7',
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',
'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={
2022-05-01 14:53:06 -05:00
"pyinstaller40": ["hook-dirs = qt_material:get_hook_dirs"]
2021-05-07 19:37:20 +02:00
},
2020-06-11 17:04:49 -05:00
)