-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
69 lines (57 loc) · 2.38 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "json-numpy"
description = "JSON encoding/decoding for Numpy arrays and scalars"
authors = [{ name = "Crimson-Crow", email = "[email protected]" }]
maintainers = [{ name = "Crimson-Crow", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE.txt" }
keywords = ["json", "numpy", "serialization", "encode", "decode", "encoding", "decoding"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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 :: Only",
"Topic :: Utilities",
]
dependencies = ["numpy"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/Crimson-Crow/json-numpy"
Repository = "https://github.com/Crimson-Crow/json-numpy.git"
Issues = "https://github.com/Crimson-Crow/json-numpy/issues"
[tool.setuptools]
py-modules = ["json_numpy"]
[tool.setuptools.dynamic]
version = { attr = "json_numpy.__version__" }
[tool.setuptools_scm]
[tool.check-manifest]
ignore = [".pre-commit-config.yaml"]
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
select = ["F", "E", "W", "C90", "I", "N", "D", "UP", "YTT", "ANN", "ASYNC", "S", "BLE", "FBT", "B", "COM", "C4", "DTZ", "T10", "EM", "FA", "ISC", "ICN", "LOG", "G", "INP", "PIE", "T20", "PYI", "PT", "Q", "RSE", "RET", "SLF", "SLOT", "SIM", "TID", "TCH", "INT", "ARG", "PTH", "FIX", "ERA", "PGH", "PL", "TRY", "FLY", "NPY", "PERF", "FURB", "RUF"]
ignore = ["PT027", "PT009", "NPY002", "D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "ANN101", "ANN401", "W191", "E111", "E114", "E117", "D206", "D300", "Q000", "Q001", "Q002", "Q003", "COM812", "COM819", "ISC001", "ISC002", "E501"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.mypy]
python_version = "3.8"
[tool.coverage.run]
branch = true
source = ["json_numpy", "tests"]
parallel = true
[tool.coverage.report]
show_missing = true
skip_covered = true
fail_under = 100