-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
79 lines (72 loc) · 1.97 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
79
[project]
name = "mostlyai-qa"
version = "1.4.4"
description = "Synthetic Data - Quality Assurance"
authors = [{ name = "MOSTLY AI", email = "[email protected]" }]
packages = [
{ include = "mostlyai/qa" }
]
requires-python = ">=3.10"
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
dependencies = [
"pydantic>=2.0.0,<3.0.0",
"numpy>=1.26.3,<2.0.0",
"scipy>=1.11.0",
"pandas>=2.0.0",
"pyarrow>=14.0.0",
"plotly>=5.18.0",
"phik>=0.12.4",
"fastcluster>=1.2.6",
"joblib>=1.2.0",
"Jinja2>=3.1.2",
"scikit-learn>=1.4.0",
"sentence-transformers>=3.1.0",
"rich>=13.9.4,<14",
]
[project.urls]
Homepage = "https://github.com/mostly-ai/mostlyai-qa"
Documentation = "https://mostly-ai.github.io/mostlyai-qa/"
Source = "https://github.com/mostly-ai/mostlyai-qa"
[dependency-groups]
dev = [
"ruff==0.9.2",
"pytest>=7.1.2",
"pre-commit>=3.2.0",
"twine>=6.0.1,<7",
"pkginfo>=1.12.0,<2",
]
docs = [
"mkdocs>=1.5.3",
"mkdocstrings[crystal, python]>=0.27.0,<0.28",
"mkdocs-material>=9.0.0,<10",
"griffe>=1.0.0,<2",
"pymdown-extensions>=10.0.0,<11",
"griffe-fieldz>=0.2.0,<0.3",
"black>=22.1.0",
]
[tool.uv]
default-groups = ["dev", "docs"]
[tool.hatch.build.targets.sdist]
include = ["mostlyai/qa"]
[tool.hatch.build.targets.wheel]
include = ["mostlyai/qa"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
target-version = "py310"
line-length = 120