1 Star 0 Fork 0

larryw3i/Funing

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1007 Bytes
一键复制 编辑 原始数据 按行查看 历史
larryw3i 提交于 2022-08-21 01:34 +08:00 . Sat, 20 Aug 2022 17:34:11 +0000 backup.
import re
import setuptools
from funing import *
from funing.settings import *
long_description = open("README.md", "r", encoding="utf-8").read()
_app_author = app_author
app_author = app_maintainer = _app_author[0]
app_author_email = app_maintainer_email = _app_author[1]
packages = setuptools.find_namespace_packages(exclude=["venv", "tests"])
setuptools.setup(
name=app_name,
version=app_version,
author=app_author,
author_email=app_author_email,
description=app_description,
long_description=long_description,
long_description_content_type="text/markdown",
url=app_url,
packages=packages,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"funing=funing:run",
]
},
python_requires=">=3.6",
install_requires=get_dep_requirements(),
include_package_data=True,
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/larryw3i/Funing.git
git@gitee.com:larryw3i/Funing.git
larryw3i
Funing
Funing
main

搜索帮助