1 Star 0 Fork 57

kiko441500 / python-simple-http-server

forked from keijack / naja-atra 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 821 Bytes
一键复制 编辑 原始数据 按行查看 历史
keijack 提交于 2021-01-04 16:03 . update setup.py
# -*- coding: utf-8 -*-
import setuptools
import simple_http_server
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="simple_http_server",
version=simple_http_server.version,
author="Keijack",
author_email="keijack.wu@gmail.com",
description="This is a simple http server, use MVC like design.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/keijack/python-simple-http-server",
packages=["simple_http_server"],
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)
Python
1
https://gitee.com/kiko441500/python-simple-http-server.git
git@gitee.com:kiko441500/python-simple-http-server.git
kiko441500
python-simple-http-server
python-simple-http-server
main

搜索帮助