magictk/setup.py

21 lines
564 B
Python
Raw Normal View History

2024-04-15 21:41:49 +08:00
import sys
from setuptools import setup, find_packages
2024-04-16 22:41:10 +08:00
VERSION = "0.0.2"
2024-04-15 21:41:49 +08:00
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',
)