-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.2 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools_scm[toml]>=7.0"]
build-backend = "setuptools.build_meta"
[project]
name = "firecracker-python"
dynamic = ["version"]
description = "A Python client library to interact with Firecracker microVMs"
authors = [
{name = "Muhammad Yuga Nugraha"}
]
requires-python = ">=3.8"
dependencies = [
"docker==7.1.0",
"requests==2.32.3",
"requests-unixsocket==0.4.1",
"tenacity==9.0.0",
"psutil==7.0.0",
"pyroute2==0.8.1",
"paramiko==3.5.1",
"faker==37.0.2"
]
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[project.scripts]
firecracker-check = "firecracker.scripts:check_firecracker_binary"
[tool.setuptools_scm]
write_to = "firecracker/_version.py"
[tool.coverage.run]
omit = [
"/usr/lib/python3/dist-packages/nftables/*",
"firecracker/_version.py",
"tests/conftest.py",
"tests/test_microvm.py"
]