-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.07 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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "predictionguard"
authors = [
{name = "Jacob Mansdorfer", email = "jacob@predictionguard.com"},
{name = "Daniel Whitenack", email = "dan@predictionguard.com"}
]
description = "The official Prediction Guard Python SDK"
description-file = "README.md"
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version"]
dependencies = [
"tabulate>=0.9.0",
"requests>=2.32.5",
]
[project.urls]
Homepage = "https://predictionguard.com"
Documentation = "https://predictionguard.github.io/python-client/"
Repository = "https://github.com/predictionguard/python-client.git"
Issues = "https://github.com/predictionguard/python-client/issues"
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"ruff==0.15.4",
"sphinx==9.1",
"sphinx-autodoc-typehints==3.9.4",
"sphinx_rtd_theme>=3.1.0",
"black>=26.1.0",
]
[tool.hatch.version]
path = "predictionguard/version.py"