-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
28 lines (25 loc) · 1017 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from distutils.core import setup
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
requires = ["Pillow>=10.2.0", "darkdetect>=0.8.0"]
setup(
name="CustomTkinterTitlebar",
version="1.0.8.6",
author="littlewhitecloud",
author_email="[email protected]",
description="This is a 📚project can help you to have a custom titlebar! 这是一个可以创建自定义标题栏的📚项目",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/littlewhitecloud/CustomTkinterTitlebar",
package="customtitlebar",
license="MIT",
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)