-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (82 loc) · 2.23 KB
/
Copy pathpyproject.toml
File metadata and controls
96 lines (82 loc) · 2.23 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
91
92
93
94
95
96
[build-system]
requires = ["setuptools>=68", "wheel", "Cython>=3.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "omnibioai-model-registry"
version = "0.1.4"
description = "Production-grade model registry for the OmniBioAI ecosystem."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Manish Kumar" }]
keywords = [
"model-registry",
"mlops",
"bioinformatics",
"ai",
"machine-learning",
"artifact-management",
"reproducibility",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"pydantic>=2.6",
"pydantic-settings>=2.2",
"PyYAML>=6.0.1",
"httpx>=0.27.0",
"boto3>=1.34.0",
"PyMySQL>=1.1.0",
"cryptography>=41.0.0",
"PyJWT>=2.8.0",
"huggingface_hub>=0.20.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black==26.3.1",
"ruff>=0.1.0",
"mypy>=1.0",
]
[project.scripts]
omr = "omnibioai_model_registry.cli.main:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["omnibioai_model_registry*"]
[tool.black]
line-length = 88
target-version = ["py310", "py311", "py312", "py313"]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.coverage.run]
omit = [
"omnibioai_model_registry/package/manifest.py",
"omnibioai_model_registry/package/validate.py",
"omnibioai_model_registry/storage/localfs.py",
"omnibioai_model_registry/storage/base.py",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q --cov=omnibioai_model_registry --cov-report=term-missing --cov-fail-under=95"