6 Star 29 Fork 13

anolis / surftrace

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setupGuide.py 1.97 KB
一键复制 编辑 原始数据 按行查看 历史
liaozhaoyan 提交于 2022-05-22 01:08 . use certifi version for python 2.7.
# -*- coding: utf-8 -*-
# cython:language_level=3
"""
-------------------------------------------------
File Name: setup
Description :
Author : liaozhaoyan
date: 2022/1/14
-------------------------------------------------
Change Activity:
2022/1/14:
-------------------------------------------------
"""
__author__ = 'liaozhaoyan'
VERSION = '0.4.6'
from setuptools import setup, find_packages
setup(name='surfGuide',
version=VERSION,
description="surfGuide is a tool that guide you to use surftrace.",
long_description='surfGuide is a tool that guide you to use surftrace.',
classifiers=["Topic :: System :: Operating System Kernels :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='linux kernel trace',
author='liaozhaoyan',
author_email='zhoayan.liao@linux.alibaba.com',
url="https://gitee.com/anolis/surftrace",
license='LGPL',
packages=["surfGuide", "surfGuide/menus"],
include_package_data=True,
zip_safe=True,
install_requires=['urwid', 'requests', 'surftrace>=0.1'],
entry_points={
'console_scripts': [
"surfGuide = surfGuide.entry:main",
]
}
)
if __name__ == "__main__":
pass
1
https://gitee.com/anolis/surftrace.git
git@gitee.com:anolis/surftrace.git
anolis
surftrace
surftrace
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891