-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (63 loc) · 1.74 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "matrix_to_coo"
description = "Function that converts a numpy matrix to a coordinate list (COO) dictionary."
authors = [{ name = "Scott E. Boyce", email = "[email protected]" }]
maintainers = [{ name = "Scott E. Boyce", email = "[email protected]" }]
license = { text = "MIT" }
requires-python = ">=3.8,<4"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = ["version"]
[project.optional-dependencies]
lint = ["ruff"]
[project.urls]
"Homepage" = "https://github.com/ScottBoyce-Python/matrix_to_coo"
"Source Code" = "https://github.com/ScottBoyce-Python/matrix_to_coo"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools]
packages = ["matrix_to_coo"]
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "matrix_to_coo.__init__.__version__" }
[tool.black]
target-version = ['py39']
line-length = 120
[tool.ruff]
target-version = "py39"
line-length = 120
indent-width = 4
exclude = [
".eggs",
".git",
"_build",
"build",
"dist",
"htmlcov",
"vulture.egg-info",
".cache",
".coverage",
".pytest_cache",
".tox",
".venv",
".vscode",
]
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Use `\n` line endings for all files
line-ending = "lf"