-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (46 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
56 lines (46 loc) · 1.42 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
[project]
name = "suitesparse-amd"
version = "0.3.5"
description = "A Python wrapper for the C-Library for SuiteSparse's Approximate Minimum Degree (AMD) algorithm"
requires-python = ">=3.10"
dependencies = []
authors = [
{ name = "Marius Juston", email = "marius.juston@hotmail.fr" },
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
keywords = ["suitesparse", "amd", "sparse", "approximate minimum degree"]
[project.urls]
Homepage = "https://github.com/Marius-Juston/SuiteSparse"
Issues = "https://github.com/Marius-Juston/SuiteSparse/issues"
[build-system]
requires = ["setuptools >= 77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[tool.bumpver]
current_version = "0.3.5"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"setup.py" = [
'version="{version}",$',
]
[tool.pylint.MAIN]
extension-pkg-allow-list = ["suitesparse_amd._amd"]
[tool.pylint.FORMAT]
max-line-length = 120