mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2025-12-31 21:06:25 +00:00
25 lines
523 B
TOML
25 lines
523 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pythonbpf"
|
|
version = "0.1.1"
|
|
description = "Reduced Python frontend for eBPF"
|
|
authors = [
|
|
{ name = "r41k0u", email="pragyanshchaturvedi18@gmail.com" },
|
|
{ name = "varun-r-mallya", email="varunrmallya@gmail.com" }
|
|
]
|
|
readme = "README.md"
|
|
license = {text = "Apache-2.0"}
|
|
requires-python = ">=3.8"
|
|
|
|
dependencies = [
|
|
"llvmlite",
|
|
"astpretty"
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["pythonbpf*"]
|