-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.04 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
[build-system]
requires = [
"setuptools>=61.0.0",
"setuptools_scm[toml]>=7.1.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "confidence/_version.py"
local_scheme = "no-local-version"
[tool.setuptools]
packages = {find = {exclude = ["demo"]}}
[project]
name = "spotify_confidence_sdk"
dynamic = ["version"]
description = "Confidence provider for the OpenFeature SDK"
readme = "README.md"
authors = [{ name = "Confidence team" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
keywords = []
dependencies = [
"requests==2.32.3",
"openfeature-sdk==0.4.2",
"typing_extensions==4.9.0",
"httpx==0.27.2"
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = [
"pytest==7.4.2",
"pytest-mock==3.11.1",
"black==23.9.1",
"flake8==6.1.0",
"requests_mock==1.11.0",
"setuptools_scm==8.0.4",
"mypy==1.5.1"
]
[project.urls]
Homepage = "https://github.com/spotify/confidence-sdk-python"