-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.13 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
[tool.poetry]
name = "streams.py"
version = "1.4.0"
authors = ["Stefan Garlonta <stefan@pickwicksoft.org>"]
description = "A stream library for Python inspired by Java Stream API"
keywords = ["streams", "parallel", "data"]
license = "GPL-3.0-or-later"
homepage = "https://github.com/PickwickSoft/pystreamapi"
repository = "https://github.com/PickwickSoft/pystreamapi"
readme = "README.md"
packages = [
{ include = "pystreamapi" },
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
joblib = ">=1.2.0"
defusedxml = { version = ">=0.7,<0.8", optional = true }
ijson = { version = ">=3.1", optional = true }
pyyaml = "^6.0.1"
tomlkit = "^0.13.2"
setuptools = ">=70.0.0"
[tool.poetry.extras]
xml_loader = ["defusedxml"]
yaml_loader = ["pyyaml"]
toml_loader = ["tomlkit"]
json_loader = ["ijson"]
all = ["defusedxml", "ijson", "pyyaml", "tomlkit"]
[tool.poetry.group.test.dependencies]
parameterized = "*"
pylint = "*"
coverage = "*"
[tool.poetry.group.lint.dependencies]
pylint = "*"
[tool.poetry.group.benchmark.dependencies]
rich = "^14.0.0"
matplotlib = "^3.10.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"