1 Star 1 Fork 2

hackerwjz/httpbin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
from setuptools import setup, find_packages
import os
import io
with open(os.path.join(os.path.realpath(os.path.dirname(__file__)), 'httpbin', 'VERSION')) as version_file:
version = version_file.read().strip()
setup(
name="httpbin",
version=version,
description="HTTP Request and Response Service",
long_description="A simple HTTP Request & Response Service, written in Python + Flask.",
# The project URL.
url='https://github.com/requests/httpbin',
# Author details
author='Kenneth Reitz',
author_email='[email protected]',
# Choose your license
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
],
test_suite="test_httpbin",
packages=find_packages(),
include_package_data = True, # include files listed in MANIFEST.in
install_requires=[
'Flask', 'MarkupSafe', 'decorator', 'itsdangerous', 'six', 'brotlipy',
'raven[flask]', 'werkzeug>=0.14.1', 'gevent', 'flasgger'
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hackerwjz/httpbin.git
[email protected]:hackerwjz/httpbin.git
hackerwjz
httpbin
httpbin
master

搜索帮助