showdialog/setup.py
2022-11-01 16:43:23 +04:00

27 lines
783 B
Python

import setuptools # type: ignore
with open('README.md', 'rt') as f:
long_description = f.read()
setuptools.setup(
name='showdialog',
version='1.0.3',
author='Chechkenev Andrey (@DarkCat09)',
author_email='aacd0709@mail.ru',
description='Simple module for showing GTK dialog',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Environment :: X11 Applications :: GTK'
],
install_requires=[
'PyGObject>=3.42.2'
],
packages=['showdialog'],
python_requires=">=3.6",
)