-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
78 lines (72 loc) · 1.59 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "safeguards"
version = "0.0.6"
description = ""
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"datasets>=3.1.0",
"detect-secrets>=1.5.0",
"evaluate>=0.4.3",
"google-generativeai>=0.8.3",
"hyperscan>=0.7.8",
"openai>=1.52.2",
"weave>=0.51.27",
"streamlit>=1.40.1",
"python-dotenv>=1.0.1",
"watchdog>=6.0.0",
"transformers>=4.46.3",
"instructor>=1.7.0",
"diskcache>=5.6.3",
"matplotlib>=3.9.3",
"plotly>=5.24.1",
"scikit-learn>=1.5.2",
"sqlparse>=0.5.2",
]
[project.optional-dependencies]
presidio = [
"presidio-analyzer>=2.2.355",
"presidio-anonymizer>=2.2.355",
]
secrets = [
"gibberish-detector>=0.1.1",
"detect-secrets>=1.5.0",
"hyperscan>=0.7.8"
]
dev = [
"isort>=5.13.2",
"black>=24.10.0",
"ruff>=0.6.9",
"pip>=24.2",
"uv>=0.5.11",
"pytest>=8.3.4",
"hypothesis>=6.122.5",
]
docs = [
"mkdocs>=1.6.1",
"mkdocstrings>=0.26.1",
"mkdocstrings-python>=1.11.1",
"mkdocs-material>=9.5.39",
"mkdocs-minify-plugin>=0.8.0",
"mkdocs-glightbox>=0.4.0",
"mkdocs-jupyter>=0.25.0",
"jupyter>=1.1.1",
]
test = [
"pytest>=8.2.0",
"pytest-asyncio>=0.23.6",
"pytest-cov>=5.0.0",
"pytest-xdist>=3.1.0",
"hypothesis>=6.122.1"
]
[tool.setuptools]
packages = ["safeguards"]
package-dir = {"" = "."}
package-data = {"safeguards" = ["**/*"]}
[tool.pytest.ini_options]
pythonpath = "."
testpaths = ["tests"]
filterwarnings = "ignore::DeprecationWarning"