43 Star 236 Fork 58

xupingmao / xnote

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 953 Bytes
一键复制 编辑 原始数据 按行查看 历史
xupingmao 提交于 2023-10-22 23:51 . 标签去重
# encoding=utf-8
import setuptools
with open("README.md", "r", encoding="utf-8") as fp:
long_description = fp.read()
data_ext_list = ["*.txt", "*.json", "*.properties", "*.js", "*.html", "*.css"]
setuptools.setup(
name = "xnote-web",
version = "0.0.4",
author = "mark",
author_email = "578749341@qq.com",
description = "xnote-web框架",
long_description = long_description,
long_description_content_type = "text/markdown",
# packages = ["config", "core", "docs", "handlers", "lib", "static", "tools", "xnote", "xutils"],
packages=setuptools.find_packages(),
include_package_data=True, # 包含资源文件
# package_dir={"": "."},
# package_data={
# "": data_ext_list,
# "handlers": data_ext_list,
# },
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)
Python
1
https://gitee.com/xupingmao/xnote.git
git@gitee.com:xupingmao/xnote.git
xupingmao
xnote
xnote
master

搜索帮助