-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.02 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
[tool.poetry]
name = "flagsmith"
version = "5.1.1"
description = "Flagsmith Python SDK"
authors = ["Flagsmith <support@flagsmith.com>"]
license = "BSD3"
readme = "README.md"
keywords = ["feature", "flag", "flagsmith", "remote", "config"]
documentation = "https://docs.flagsmith.com"
packages = [{ include = "flagsmith" }]
[tool.poetry.dependencies]
flagsmith-flag-engine = "^10.0.3"
iso8601 = { version = "^2.1.0", python = "<3.11" }
python = ">=3.9,<4"
requests = "^2.32.3"
requests-futures = "^1.0.1"
sseclient-py = "^1.8.0"
typing-extensions = "^4.15.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
mypy = { version = "^1.16.1", python = ">=3.9,<4" }
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-mock = "^3.6.1"
pre-commit = { version = "^4.2.0", python = ">=3.9,<4" }
responses = "^0.24.1"
types-requests = "^2.32"
pyfakefs = "^5.9.2"
[tool.mypy]
exclude = ["example/*"]
[tool.black]
target-version = ["py39"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"