-
Notifications
You must be signed in to change notification settings - Fork 60
/
setupTrace.py
62 lines (57 loc) · 2.23 KB
/
setupTrace.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
55
56
57
58
59
60
61
62
# -*- 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.7.12'
import sys
from setuptools import setup, find_packages
if sys.version_info.major == 2:
reqLists = ["certifi==2017.4.17", "pip==20.3.4", "requests==2.23.0", "quickSvg>=0.1.6"]
else:
reqLists = ["requests", "quickSvg>=0.1.6"]
setup(name='surftrace',
version=VERSION,
description="surftrace is a tool that allows you to surf the linux kernel.",
long_description='surftrace is a tool that allows you to surf the linux kernel.',
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='MIT',
packages=["surftrace"],
include_package_data=True,
zip_safe=True,
install_requires=reqLists,
entry_points={
'console_scripts': [
"surftrace = surftrace.surftrace:main",
"kobuild = surftrace.kobuild:main",
"surfGraph = surftrace.surfGraph:main",
]
}
)
if __name__ == "__main__":
pass