添加setup

This commit is contained in:
cxykevin 2024-04-15 21:41:49 +08:00
parent a25e6261c4
commit ba91a1aa22
1 changed files with 20 additions and 0 deletions

20
setup.py Normal file
View File

@ -0,0 +1,20 @@
import sys
from setuptools import setup, find_packages
VERSION = "0.0.1"
pywin32_need = ([] if sys.platform.startswith("linux") else ["pywin32"])
setup(
name="magictk",
version=VERSION,
packages=(
find_packages(where="./magictk")
),
package_dir={
"magictk": "./magictk",
},
install_requires=[]+pywin32_need,
author='cxykevin|git.hmtsai.cn',
author_email='cxykevin@yeah.net',
description='A tkinter weights looks like element-plus',
url='http://git.hmtsai.cn/cxykevin/magictk.git',
license='GPLv2',
)