4 Star 24 Fork 8

lmay/hexo-blog-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 967 Bytes
一键复制 编辑 原始数据 按行查看 历史
lmay 提交于 2019-09-21 10:36 . commit message
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# ----------------------------------------------------------
# --
# -- 打包命令: python setup.py sdist
# -- pip可以直接安装dist下的压缩包,代码:pip3 install zsf-test-1.0.0.tar.gz
# ****************************
# Author: lmay.Zhou
# Blog: www.lmaye.com
# Email lmay@lmaye.com
# Date: 2018/4/28 12:35 星期六
# ----------------------------------------------------------
import setuptools
import textwrap
from setuptools import find_packages
if __name__ == "__main__":
setuptools.setup(
name="hexo-blog-admin",
version="1.0.0",
description="lmayZhou Blog Admin",
author="lmay",
author_email="lmay@lmaye.com",
long_description=textwrap.dedent("""hexo-blog-admin"""),
packages=find_packages(),
install_requires=[
"Flask",
"xmltodict",
],
include_package_data=True,
zip_safe=False,
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/lmay/hexo-blog-admin.git
git@gitee.com:lmay/hexo-blog-admin.git
lmay
hexo-blog-admin
hexo-blog-admin
master

搜索帮助