-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
83 lines (73 loc) · 1.99 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
[build-system]
requires = ["hatchling>=1.24.2"]
build-backend = "hatchling.build"
[project]
name = "oris-ai"
version = "0.7.2"
description = "Oris: Responsible AI runtime framework for production pipelines."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Oris Contributors" }
]
keywords = ["responsible-ai", "runtime", "pipelines", "safety", "observability"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Application Frameworks"
]
dependencies = [
"PyYAML>=6.0.1",
]
[project.optional-dependencies]
dev = [
"ipykernel>=6.29.0",
"nbconvert>=7.17.0",
"mypy>=1.11.0",
"pre-commit>=3.8.0",
"pytest>=8.3.2",
"pytest-cov>=5.0.0",
"ruff>=0.6.4",
"types-PyYAML>=6.0.12.20240917",
]
docs = [
"mkdocs-material>=9.5.0",
]
[project.scripts]
oris = "oris.cli.main:main"
[project.urls]
Homepage = "https://github.com/DevStrikerTech/oris"
Documentation = "https://devstrikertech.github.io/oris/"
Repository = "https://github.com/DevStrikerTech/oris"
Issues = "https://github.com/DevStrikerTech/oris/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/oris"]
[tool.pytest.ini_options]
addopts = "-q --cov=src/oris --cov-report=term-missing --cov-fail-under=84"
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP", "N", "S"]
ignore = ["S101"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_return_any = true
show_error_codes = true
pretty = true
mypy_path = "src"
[[tool.mypy.overrides]]
module = ["yaml.*"]
ignore_missing_imports = true