-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.25 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
48
49
50
51
52
53
54
55
56
57
58
59
60
[project]
name = "htool"
version = "1.0.0"
authors = [{ name = "Pierre Marchand", email = "test@test.com" }]
description = "CLI utility to automate asciinema"
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: MacOS",
"Operating System :: Unix",
]
keywords = [
"kernel approximation",
"hierarchical matrix",
"domain decomposition method",
]
dependencies = ["mpi4py>=4.0.0", "numpy"]
[project.optional-dependencies]
dev = ["ruff", "matplotlib>=3.0.0", "pytest", "scipy", "pybind11-stubgen"]
[project.urls]
"Homepage" = "https://github.com/htool-ddm/htool_python"
"Bug Tracker" = "https://github.com/htool-ddm/htool_python/issues"
[tool.ruff]
line-length = 88
indent-width = 4
exclude = ["lib", "cmake-format.py"]
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
]
ignore = []
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
[build-system]
requires = [
"setuptools>=42",
"wheel",
"cmake",
"mpi4py",
"numpy",
"pybind11-stubgen",
]
build-backend = "setuptools.build_meta"