-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (38 loc) · 1.12 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel", "Cython", "pytest", "pytest-runner", "sphinx", "furo", "flake8", "scapy"]
build-backend = "setuptools.build_meta"
[project]
name = "py-gmp"
version = "0.0.2"
description = "Linux Multicast Routing."
readme = "README.md"
requires-python = ">=3.8"
authors = [ {name = "Jack Hart", email = "[email protected]"} ]
maintainers = [ {name = "Jack Hart", email = "[email protected]"} ]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: MIT License",
"Topic :: Multimedia :: Video",
"Topic :: System :: Networking",
"Topic :: System :: Operating System Kernels :: Linux"
]
license = {file = "./LICENSE"}
[project.optional-dependencies]
daemons = ["fastapi", "uvicorn"]
[project.urls]
Source = "https://github.com/jackhart/pygmp"
# Documentation = "TODO"
[options]
packages = ["pygmp"]
[tool.setuptools.package-data]
pygmp = ['log_config.ini']
[tool.pytest.ini_options]
pythonpath = "."
addopts = "-s"
testpaths = [
"tests",
]
[tool.cibuildwheel]
archs = ["auto"]
test-skip = "true"