Skip to content
This repository was archived by the owner on Nov 22, 2025. It is now read-only.

Commit 2166155

Browse files
half of setup.py
1 parent e56c92c commit 2166155

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

setup.py

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
from distutils.core import setup
2+
3+
with open("README.md", "r", encoding="utf-8") as readme:
4+
long_description = readme.read()
5+
6+
setup(
7+
name="CustomTkinterTitlebar",
8+
version="1.0.7.9",
9+
description="This is a 📚project can help you to have a custom titlebar! 这是一个可以创建自定义标题栏的📚项目",
10+
long_description=long_description,
11+
long_description_content_type="text/markdown",
12+
author="littlewhitecloud",
13+
url="https://github.com/littlewhitecloud/CustomTkinterTitlebar",
14+
packages=["CustomTkinterTitlebar"],
15+
classifiers = [
16+
'Development Status :: 5 - Production/Stable',
17+
'Intended Audience :: Developers',
18+
19+
'License :: OSI Approved :: MIT License',
20+
21+
'Programming Language :: Python :: 3.8',
22+
'Programming Language :: Python :: 3.9',
23+
'Programming Language :: Python :: 3.10',
24+
'Programming Language :: Python :: 3.11',
25+
],
26+
package_data={
27+
'':["*.dll"],
28+
},
29+
data_files=[
30+
('CustomTkintertitlebar/asset/', ["*.ico", "CustomTkintertitlebar/asset/light/*", "CustomTkintertitlebar/asset/dark/*"]),
31+
]
32+
)

0 commit comments

Comments
 (0)