-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (33 loc) · 843 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 = "dj-split-settings"
version = "0.1.3"
description = ""
authors = ["ouhammmourachid <rachidouhammou21@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ouhammmourachid/dj-split-settings"
[tool.poetry.dependencies]
python = "^3.10"
django-split-settings = "^1.3.2"
pyyaml = "^6.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
ruff = "^0.8.0"
pre-commit = "^4.0.1"
pytest-cov = "^6.0.0"
coverage = "^7.6.8"
codecov = "^2.1.13"
types-pyyaml = "^6.0.12.20240917"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[bumpver]
current_version = "0.1.3"
version_pattern = "MAJOR.MINOR.PATCH"
[bumpver.file_patterns]
"pyproject.toml" = [
'version = "{version}"$'
]
"dj_split_settings/__init__.py" = [
'^__version__: str = "{version}"$',
]