-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (59 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
70 lines (59 loc) · 2.03 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "python_flaggle"
version = "0.4.0a2"
description = "python-flaggle is a Python library for feature flag management."
keywords = ["feature flags", "feature toggles", "feature management", "python"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
readme = "README.md"
urls.Repo = "https://github.com/Flaggle/flaggle-python"
authors = [{ name = "Asaph Diniz", email = "contato@asaph.dev.br" }]
license = { text = "MIT" }
requires-python = ">=3.9"
dependencies = ["requests (>=2.32.3,<3.0.0)"]
[tool.poetry]
[tool.poetry.group.dev.dependencies]
ruff = "^0.11.11"
pytest = "^8.3.5"
pytest-cov = "^6.1.1"
pytest-sugar = "^1.0.0"
mkdocs-material = "^9.6.14"
mkdocs-awesome-pages-plugin = "^2.10.1"
mkdocs-codeinclude-plugin = "^0.2.1"
mkdocs-section-index = "^0.3.10"
mkdocs-macros-plugin = "^1.3.7"
mkdocs-git-revision-date-localized-plugin = "^1.4.7"
mkdocstrings = {extras = ["python"], version = "^0.29.1"}
[tool.poetry.group.build.dependencies]
poethepoet = "^0.34.0"
flake8 = "^7.2.0"
twine = "^6.1.0"
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_also = [
# Don't complain about missing debug-only code:
"def __repr__",
"if self\\.debug",
# Don't complain if tests don't hit defensive assertion code:
"raise AssertionError",
"raise NotImplementedError",
# Don't complain if non-runnable code isn't run:
"if 0:",
"if __name__ == .__main__.:",
# Don't complain about abstract methods, they aren't run:
"@(abc\\.)?abstractmethod",
]
[tool.coverage.run]
omit = [".venv/*", "tests/*"]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry_bumpversion.file."python_flaggle/__init__.py"]