forked from Flagsmith/flagsmith-openfeature-provider-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 741 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 741 Bytes
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
[project]
name = "openfeature-provider-flagsmith"
version = "0.1.4"
description = "Openfeature provider for Flagsmith"
authors = [
{ name = "Matthew Elwell", email = "matthew.elwell@flagsmith.com>" }
]
readme = "README.md"
requires-python = ">=3.9,<4.0"
dependencies = [
"flagsmith (>=3.6.0,<4.0.0)",
"openfeature-sdk (>=0.6.0,<0.9.0)",
]
[tool.poetry]
requires-poetry = ">=2.0"
packages = [{ include = "openfeature_flagsmith" }]
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
ruff = "^0.2.2"
pre-commit = "^3.6.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint.isort]
known-first-party = ['openfeature_flagsmith']
known-third-party = ['openfeature', 'flagsmith']