qt-material/setup.py

36 lines
852 B
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-11-17 12:07:42 -05:00
version='1.17',
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',
description="Qt Stylesheet for PySide2 and PyQt5.",
2020-06-11 17:04:49 -05:00
# long_description = README,
classifiers=[
],
)