-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (81 loc) · 2.06 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (81 loc) · 2.06 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "batchstats"
version = "0.6"
description = "Online statistics for batched, streaming, and out-of-core NumPy data."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Cyril Joly" },
]
keywords = ["numpy", "online-algorithms", "statistics", "streaming"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy>=1.22.4",
]
[project.optional-dependencies]
test = [
"pytest>=8,<10",
"pytest-cov>=5,<8",
]
docs = [
"sphinx>=7,<10",
"sphinx-favicon>=1,<2",
"sphinxawesome-theme>=5,<6",
]
dev = [
"build>=1.2,<2",
"pytest>=8,<10",
"pytest-cov>=5,<8",
"ruff>=0.11,<1",
"sphinx>=7,<10",
"sphinx-favicon>=1,<2",
"sphinxawesome-theme>=5,<6",
"twine>=6,<8",
]
[project.urls]
Documentation = "https://batchstats.readthedocs.io"
Issues = "https://github.com/CyrilJl/BatchStats/issues"
Repository = "https://github.com/CyrilJl/BatchStats"
[tool.setuptools.packages.find]
include = ["batchstats*"]
[tool.pytest.ini_options]
addopts = [
"--strict-config",
"--strict-markers",
"-ra",
]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["batchstats"]
[tool.coverage.report]
exclude_also = [
"if TYPE_CHECKING:",
]
fail_under = 80
show_missing = true
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["B", "E4", "E7", "E9", "F", "I", "RUF", "UP"]
[tool.ruff.lint.per-file-ignores]
"docs/source/conf.py" = ["E501"]