-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (41 loc) · 975 Bytes
/
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
[project]
name = "pyhola"
version = "0.1.0"
description = "A pybind11 wrapper to adaptagrams HOLA: Human-like Orthogonal Layout Algorithm."
readme = "README.md"
authors = [
{ name = "Shakeeb Alireza", email = "[email protected]" }
]
requires-python = ">=3.7"
# dependencies = []
[project.optional-dependencies]
# development dependency groups
test = [
'pytest>=4.6',
]
[build-system]
requires = [
"setuptools>=42",
"pybind11>=2.10.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = false
[tool.cibuildwheel]
test-command = "python {project}/tests/test.py"
test-skip = "*universal2:arm64"
[tool.pytest.ini_options]
pythonpath = ["src", "build"]
testpaths = ["tests"]
# addopts = "--cov=cyllama --cov-report html"
# addopts = "-ra -q"
[tool.ruff]
target-version = "py37"
[tool.ruff.lint]
extend-select = [
"B", # flake8-bugbear
"I", # isort
"PGH", # pygrep-hooks
"RUF", # Ruff-specific
"UP", # pyupgrade
]