-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
125 lines (112 loc) · 2.24 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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# pyproject.toml
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "openfeature_sdk"
version = "0.7.4"
description = "Standardizing Feature Flagging for Everyone"
readme = "README.md"
authors = [{ name = "OpenFeature", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = [
"openfeature",
"feature",
"flags",
"toggles",
]
dependencies = []
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/open-feature/python-sdk"
[tool.hatch]
[tool.hatch.envs.default]
dependencies = [
"behave",
"coverage[toml]>=6.5",
"pytest",
"pytest-asyncio"
]
[tool.hatch.envs.default.scripts]
test = "pytest {args:tests}"
test-cov = "coverage run -m pytest {args:tests}"
cov-report = [
"coverage xml",
]
cov = [
"test-cov",
"cov-report",
]
e2e = [
"git submodule update --init",
"cp test-harness/features/evaluation.feature tests/features/",
"behave tests/features/",
"rm tests/features/*.feature",
]
[tool.hatch.build.targets.sdist]
exclude = [
".gitignore",
"test-harness",
"venv",
]
[tool.hatch.build.targets.wheel]
packages = ["openfeature"]
[tool.mypy]
files = "openfeature"
namespace_packages = true
explicit_package_bases = true
local_partial_types = true # will become the new default from version 2
pretty = true
strict = true
disallow_any_generics = false
[tool.ruff]
exclude = [
".git",
".venv",
"__pycache__",
"venv",
]
target-version = "py38"
[tool.ruff.lint]
select = [
"A",
"B",
"C4",
"C90",
"E",
"F",
"FLY",
"FURB",
"I",
"LOG",
"N",
"PERF",
"PGH",
"PLC",
"PLR0913",
"PLR0915",
"RUF",
"S",
"SIM",
"T10",
"T20",
"UP",
"W",
"YTT",
]
ignore = [
"E501", # the formatter will handle any too long line
]
[tool.ruff.lint.per-file-ignores]
"tests/**/*" = ["PLR0913", "S101"]
[tool.ruff.lint.pylint]
max-args = 6
max-statements = 30
[tool.ruff.lint.pyupgrade]
# Preserve types, even if a file imports `from __future__ import annotations`.
keep-runtime-typing = true