-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 808 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
import setuptools
with open("README.md", "r", encoding = "utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name = "gradientmessagebox",
version = "1.5",
author = "Fibo Metavinci",
author_email = "pszdw-75nat-5227i-bha5s-y7lai-pebdq-o2agp-3xho4-hd6z6-emxrd-nqe@dmail.ai",
description = "A very simple tkinter prompt window with a settable image background.",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/inviti8",
project_urls = {
"Bug Tracker": "https://github.com/inviti8/gradientmessagebox/issues",
},
package_dir = {"": "gradientmessagebox"},
packages = setuptools.find_packages(where="gradientmessagebox"),
python_requires = ">=3.9.18"
)