showdialog/setup.py

26 lines
714 B
Python
Raw Normal View History

2022-08-10 12:42:34 +03:00
import setuptools # type: ignore
with open('README.md', 'rt') as f:
long_description = f.read()
setuptools.setup(
name='showdialog',
version='1.0.0',
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 :: 6 - Stable',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT',
'Operating System :: OS Independent'
],
install_requires=[
'PyGObject>=3.42.2'
],
packages=['showdialog'],
python_requires=">=3.6",
)