-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 1023 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
39
40
[tool.poetry]
name = "fastapi-easy-routing"
version = "0.0.2"
description = "The file system-based FastAPI router automatically generates the routing structure from the file system."
authors = ["Ebubekir Karanfil <[email protected]>"]
readme = "README.md"
packages = [{include = "fastapi_directory_routing"}]
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.103.1"
sphinx = "^7.2.6"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
build = "^1.0.3"
twine = "^4.0.2"
bumpver = "^2023.1126"
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.bumpver]
current_version = "0.0.2"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
tag_message = "{new_version}"
tag_scope = "default"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"'
]
"fastapi_directory_routing/__version__.py" = ["{version}"]