-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.32 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
[build-system]
requires = ["uv_build~=0.9.0"]
build-backend = "uv_build"
[project]
name = "openfeature-flagd-api"
version = "1.0.0"
description = "OpenFeature flagd evaluator API definition"
readme = "README.md"
authors = [{ name = "OpenFeature", email = "openfeature-core@groups.io" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = []
dependencies = [
"openfeature-sdk>=0.8.2",
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/open-feature/python-sdk-contrib"
[dependency-groups]
dev = [
"coverage[toml]>=7.10.0,<8.0.0",
"mypy>=1.18.0,<2.0.0",
"poethepoet>=0.37.0",
"pytest>=9.0.0,<10.0.0",
]
[tool.uv.build-backend]
module-name = "openfeature"
module-root = "src"
namespace = true
[tool.mypy]
mypy_path = "src"
files = "src"
python_version = "3.10"
namespace_packages = true
explicit_package_bases = true
local_partial_types = true
allow_redefinition_new = true
fixed_format_cache = true
pretty = true
strict = true
disallow_any_generics = false
[tool.coverage.run]
omit = ["tests/**"]
[tool.poe.tasks]
test = "pytest tests"
test-cov = "coverage run -m pytest tests"
cov-report = "coverage xml"
cov = [
"test-cov",
"cov-report"
]
mypy = "mypy"