1 Star 1 Fork 0

斐浦(天津)软件有限公司/helpdesk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 531 Bytes
一键复制 编辑 原始数据 按行查看 历史
from setuptools import find_packages, setup
with open("requirements.txt") as f:
install_requires = f.read().strip().split("\n")
# get version from __version__ variable in frappedesk/__init__.py
from helpdesk import __version__ as version
setup(
name="helpdesk",
version=version,
description="Customer Service Software",
author="Frappe Technologies",
author_email="hello@frappe.io",
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=install_requires,
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/phipsoft/helpdesk.git
git@gitee.com:phipsoft/helpdesk.git
phipsoft
helpdesk
helpdesk
develop

搜索帮助