-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathsetupPylcc.py
53 lines (49 loc) · 1.87 KB
/
setupPylcc.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
# -*- coding: utf-8 -*-
# cython:language_level=3
"""
-------------------------------------------------
File Name: setupPylcc
Description :
Author : liaozhaoyan
date: 2022/1/17
-------------------------------------------------
Change Activity:
2022/1/17:
-------------------------------------------------
"""
__author__ = 'liaozhaoyan'
VERSION = '0.3.0'
from setuptools import setup
setup(name='pylcc',
version=VERSION,
description="pylcc is short for python libbpf compile collections",
long_description='pylcc is short for python libbpf compile collections',
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='zhaoyan.liao@linux.alibaba.com',
url="https://gitee.com/anolis/surftrace",
license='MIT',
packages=["pylcc"],
include_package_data=True,
zip_safe=True,
install_requires=['surftrace>=0.7.12', 'cffi'],
entry_points={
'console_scripts': [
]
}
)
if __name__ == "__main__":
pass