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',
|
2022-11-01 15:43:23 +03:00
|
|
|
version='1.0.3',
|
2022-08-10 12:42:34 +03:00
|
|
|
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=[
|
2022-08-10 12:48:24 +03:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2022-08-10 12:42:34 +03:00
|
|
|
'Programming Language :: Python :: 3',
|
2022-08-10 12:48:24 +03:00
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Environment :: X11 Applications :: GTK'
|
2022-08-10 12:42:34 +03:00
|
|
|
],
|
|
|
|
install_requires=[
|
|
|
|
'PyGObject>=3.42.2'
|
|
|
|
],
|
|
|
|
packages=['showdialog'],
|
|
|
|
python_requires=">=3.6",
|
|
|
|
)
|