-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (81 loc) · 2.6 KB
/
pyproject.toml
File metadata and controls
90 lines (81 loc) · 2.6 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
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
79
80
81
82
83
84
85
86
87
88
89
90
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sentinelml"
version = "2.0.0"
description = "Unified Reliability Engine for AI/ML Systems"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "SentinelML Team", email = "team@sentinelml.ai"}
]
keywords = [
"machine-learning",
"mlops",
"drift-detection",
"anomaly-detection",
"ai-safety",
"model-monitoring",
"uncertainty-quantification",
"llm-guardrails",
"rag-evaluation"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
Homepage = "https://github.com/sentinelml/sentinelml"
Documentation = "https://sentinelml.readthedocs.io"
Repository = "https://github.com/sentinelml/sentinelml.git"
Issues = "https://github.com/sentinelml/sentinelml/issues"
[project.scripts]
sentinelml = "sentinelml.cli:main"
[project.optional-dependencies]
torch = ["torch>=1.9.0", "torchvision>=0.10.0"]
tensorflow = ["tensorflow>=2.6.0"]
transformers = ["transformers>=4.20.0", "tokenizers>=0.12.0"]
genai = ["openai>=0.27.0", "anthropic>=0.3.0"]
rag = ["langchain>=0.0.200", "llama-index>=0.6.0"]
streaming = ["kafka-python>=2.0.0"]
serving = ["fastapi>=0.85.0", "uvicorn>=0.18.0", "grpcio>=1.48.0"]
vectorstore = ["faiss-cpu>=1.7.0", "chromadb>=0.3.0"]
dev = ["pytest>=7.0.0", "black>=22.0.0", "isort>=5.10.0", "flake8>=5.0.0", "mypy>=0.950"]
[tool.setuptools.packages.find]
where = ["."]
include = ["sentinelml*"]
exclude = ["tests*", "examples*", "docs*", "benchmarks*"]
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311']
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
addopts = "-v --tb=short --strict-markers"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests",
"requires_gpu: marks tests requiring GPU",
]