-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
38 lines (33 loc) · 961 Bytes
/
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
[tool.poetry]
name = "streams.py"
version = "1.3.0"
authors = ["Stefan Garlonta <[email protected]>"]
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.8,<4.0"
joblib = ">=1.2,<=1.4.2"
defusedxml = { version = ">=0.7,<0.8", optional = true }
pyyaml = "^6.0.1"
tomlkit = "^0.13.2"
setuptools = ">=70.0.0"
[tool.poetry.extras]
xml_loader = ["defusedxml"]
yaml_loader = ["pyyaml"]
all = ["defusedxml", "pyyaml"]
[tool.poetry.group.test.dependencies]
parameterized = "*"
pylint = "*"
coverage = "*"
[tool.poetry.group.lint.dependencies]
pylint = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"