加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 876 Bytes
一键复制 编辑 原始数据 按行查看 历史
g1879 提交于 2023-04-05 22:41 . 改进获取数据逻辑
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(
name="FlowViewer",
version="0.2.11",
author="g1879",
author_email="g1879@qq.com",
description="Chrome浏览器数据包监听器。",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
keywords="FlowViewer",
url="https://gitee.com/g1879/FlowViewer",
include_package_data=True,
packages=find_packages(),
install_requires=[
"requests", "pychrome"
],
classifiers=[
"Programming Language :: Python :: 3.6",
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
python_requires='>=3.6'
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化