forked from aliyun/surftrace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetupGuide.py
54 lines (50 loc) · 1.97 KB
/
setupGuide.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- 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='[email protected]',
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