-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (84 loc) · 2.08 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (84 loc) · 2.08 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
92
93
94
95
96
97
98
99
[build-system]
requires = ["setuptools>=48", "setuptools_scm[toml]>=6.3.1"]
build-backend = "setuptools.build_meta"
[project]
name = "memory-foam"
description = "Performant iterators for loading files from S3, GCS and Azure into memory for easy processing."
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [{name = "Matt Seddon", email = "mattseddon@hotmail.com"}]
classifiers = [
"Programming Language :: Python :: 3",
"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",
"Development Status :: 5 - Production/Stable"
]
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"fsspec>=2024.2.0",
"adlfs>=2024.2.0",
"gcsfs>=2024.2.0",
"s3fs>=2024.2.0",
"python-dateutil>=2"
]
[project.optional-dependencies]
tests = [
"pytest>=8,<9",
"pytest-sugar>=0.9.6",
"pytest-cov>=4.1.0",
"pytest-mock>=3.12.0",
"pytest-servers[all]>=0.5.14",
"hypothesis"
]
dev = [
"memory_foam[tests]",
"mypy==2.1.0",
"types-python-dateutil"
]
examples = [
"dlt[duckdb]",
"huggingface_hub",
"pandas",
"matplotlib",
"open_clip_torch",
"pillow",
"tqdm",
"ultralytics"
]
[project.urls]
Documentation = "https://github.com/mattseddon/memory-foam"
Issues = "https://github.com/mattseddon/memory-foam/issues"
Source = "https://github.com/mattseddon/memory-foam"
[tool.setuptools_scm]
[tool.pytest.ini_options]
addopts = "-rfEs"
filterwarnings = [
"ignore::DeprecationWarning:botocore.auth"
]
[tool.coverage.run]
branch = true
source = ["memory_foam", "tests"]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.report]
show_missing = true
[tool.mypy]
files = ["src", "tests"]
ignore_missing_imports = true
[tool.codespell]
ignore-words-list = " "
[tool.ruff]
show-fixes = true
[tool.ruff.lint]
preview = true
explicit-preview-rules = true
[tool.ruff.lint.flake8-type-checking]
strict = true
[tool.ruff.lint.mccabe]
max-complexity = 15
[tool.ruff.lint.pydocstyle]
convention = "google"