-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 812 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 812 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
[project]
name = "vibrio"
version = "0.3.0"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
dependencies = [
"requests",
"typing_extensions",
"aiohttp",
"psutil",
]
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=68.2"]
[tool.setuptools]
packages = ["vibrio"]
include-package-data = false
[tool.cibuildwheel]
test-command = "pytest {package}"
test-requires = [
"pytest",
"pytest-asyncio",
]
[tool.cibuildwheel.linux]
# install dotnet framework on linux containers
before-all = "curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --version 6.0.416"
[tool.cibuildwheel.linux.environment]
DOTNET_ROOT = "$HOME/.dotnet"
PATH = "$PATH:$DOTNET_ROOT:$DOTNET_ROOT/tools"
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT = "1"