python-sdk/pyproject.toml

31 lines
807 B
TOML

# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openfeature_sdk"
version = "0.0.5"
description = "Standardizing Feature Flagging for Everyone"
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 = []
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["black", "flake8", "isort", "pip-tools", "pytest", "pre-commit"]
[project.urls]
Homepage = "https://github.com/open-feature/python-sdk"
[tool.isort]
profile = "black"
multi_line_output = 3