-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 901 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 901 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pycbpf"
version = "0.0.2"
authors = [
{ name="junka", email="wan.junjie@foxmail.com" },
]
description = "convert cbpf code to C for BCC"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"libpcap",
]
[project.scripts]
pycap = "pycbpf.c2ebpf:main"
pycbpf = "pycbpf.cbpf2c:main"
[project.urls]
"Homepage" = "https://github.com/junka/pycbpf"
"Bug Tracker" = "https://github.com/junka/pycbpf/issues"
[tool.pytest.ini_options]
testpaths = [
"tests"
]
addopts = "--verbose --cov pycbpf/"
[tool.pylint."MESSAGES CONTROL"]
disable = '''missing-function-docstring,
missing-module-docstring,
'''
[tool.black]
line-length = 88