qt-material/setup.py

41 lines
1.1 KiB
Python
Raw Normal View History

2020-06-11 17:04:49 -05:00
import os
from setuptools import setup, find_packages
# with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
# README = readme.read()
# 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',
2020-12-12 14:20:05 -05:00
version='2.1',
packages=['qt_material', 'qt_material.resources'],
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
2020-11-17 11:55:40 -05:00
python_requires='>=3.6',
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-06-11 17:04:49 -05:00
# long_description = README,
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.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
2020-06-11 17:04:49 -05:00
],
)