-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (71 loc) · 1.82 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (71 loc) · 1.82 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "merit-ai"
description = "Monitoring, Evaluation, Reporting, Inspection, Testing framework for AI systems"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
dynamic = ["version"]
authors = [
{name = "adithyakpb"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"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",
]
dependencies = [
"pydantic",
"openai>=1.0.0",
"click>=8.1.3",
"requests",
"python-dotenv",
"jsonschema"
]
[project.optional-dependencies]
openai = ["openai>=1.0.0"]
google = ["google-generativeai>=0.3.0"]
analysis = [
"numpy",
"scikit-learn",
"umap-learn",
"hdbscan",
"pymongo>=4.0"
]
dev = [
"pytest>=7.3.1",
"pytest-cov>=4.1.0",
"pytest-mock>=3.10.0",
"pytest-xdist>=3.3.1",
"pytest-rerunfailures>=11.1.2",
"responses>=0.23.1",
"black>=23.3.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"mypy>=1.3.0",
"tox>=4.6.3",
]
docs = [
"sphinx>=7.0.1",
"sphinx-rtd-theme>=1.2.2",
"sphinx-autodoc-typehints>=1.23.0",
]
all = [
"merit[openai,google,analysis,dev,docs]",
]
[project.scripts]
merit = "merit.cli:merit_cli"
[tool.setuptools.packages.find]
where = ["."] # Look in the current directory
include = ["merit*"] # Include 'merit' and anything starting with 'merit.'
[tool.setuptools.dynamic]
version = {attr = "merit.__version__"}