-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.12 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
[tool.poetry]
name = "pyfluent-iterables"
version = "2.0.0"
description = "Fluent API wrapper for Python collections"
authors = ["Jan Michelfeit"]
license = "MIT License"
repository = 'https://github.com/mifeet/pyfluent-iterables'
documentation = "https://github.com/mifeet/pyfluent-iterables/blob/main/README.md"
readme = 'README.md'
keywords = ["wrapper", "fluent", "interface", "functional", "collections"]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
mypy = "^0.950"
pytest = "^7.1.2"
bumpver = "^2022.1116"
black = {version = "^24.8.0", python = ">=3.10"}
more-itertools = "^10.5.0"
setuptools = ">=70.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.bumpver]
current_version = "2.0.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"',
]
"pyfluent_iterables/__init__.py" = ["{version}"]
[tool.black]
line-length = 120
target-version = ['py310']