1 Star 1 Fork 1

DavidHo/defgui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
123 提交于 2025-01-07 14:34 +08:00 . 版本更新
from setuptools import setup, find_packages
with open( "README.md", encoding="utf-8") as fh:
long_description = "\n" + fh.read()
VERSION = '0.2.1'
DESCRIPTION = 'Decorator for Fast Generation of Function Input Output Components with Tkinter or Streamlit'
LONG_DESCRIPTION = 'A function decorator that generates corresponding input and output components with Tkinter or Streamlit based on the number of arguments and return values of the function.'
setup(
name="defgui",
version=VERSION,
author="davidho",
author_email="",
url="https://github.com/davidho123/defgui",
license="MIT",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
install_requires=[],
keywords=['python', 'gui', 'streamlit','defgui','function','tkinter'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/david-fs/defgui.git
git@gitee.com:david-fs/defgui.git
david-fs
defgui
defgui
main

搜索帮助