-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
35 lines (30 loc) · 939 Bytes
/
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "cloudbees/_version.py"
[project]
dynamic = ["version"]
name="cloudbees-openfeature-provider-python"
authors=[{name = "CloudBees", email = "[email protected]"}]
description="CloudBees.com OpenFeature SDK"
keywords=["CloudBees", "OpenFeature"]
requires-python= ">=3.8"
readme = "README.md"
dependencies = [
'rox >= 5.0',
'openfeature-sdk >= 0.4.1',
]
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: Other/Proprietary License',
]
[project.urls]
homepage='https://github.com/rollout/cloudbees-openfeature-provider-python'
[tools.setuptools]
packages=["cloudbees"]
[tool.setuptools.packages.find]
exclude = ["./test*"]