-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
123 lines (111 loc) · 2.92 KB
/
pyproject.toml
File metadata and controls
123 lines (111 loc) · 2.92 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[project]
name = "flowdapt"
version = "0.1.43"
description = "A generalized framework for robust modular deployments of large-scale, real-time adaptive modeling on chaotic data."
readme = "README.md"
authors = [
{name = "Emergent Methods, LLC", email = "contact@emergentmethods.ai"},
]
license = {text = "Apache-2.0"}
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"rich>=14.2.0",
"uvicorn>=0.37.0",
"uvloop>=0.21.0",
"typer>=0.19.2",
"orjson>=3.10.15",
"dask[dataframe,diagnostics,distributed]==2025.2.0",
"ray[default]==2.54.1",
"async-timeout>=4.0.3",
"pandas>=2.0.2",
"numpy>=1.26.4,<3.0.0",
"cloudpickle==3.1.1",
"pyarrow>=15.0.0",
"llvmlite>=0.43.0",
"python-multipart>=0.0.6",
"coolname>=2.2.0",
"python-dotenv>=1.0.0",
"crontab>=1.0.5",
"python-rapidjson>=1.21",
"nvidia-ml-py>=13.580.82",
"semver>=3.0.4",
"aiosonic>=0.27.0",
"asynctempfile>=0.5.0",
"gpustat==1.1.1",
"dill>=0.4.0",
"cryptography>=40.0.2",
"structlog>=23.1.0",
"opentelemetry-api>=1.30.0",
"opentelemetry-sdk>=1.30.0",
"opentelemetry-exporter-otlp>=1.30.0",
"opentelemetry-instrumentation-asgi>=0.51b0",
"opentelemetry-instrumentation-system-metrics>=0.51b0",
"opentelemetry-instrumentation-sqlalchemy>=0.51b0",
"opentelemetry-exporter-otlp-proto-http>=1.30.0",
"tinydb>=4.8.0",
"aiotinydb>=2.0.0",
"motor>=3.3.1",
"tinydb-serialization>=2.1.1",
"fastapi>=0.119.0",
"pydantic>=2.5.3,<2.12.5",
"python-manifest>=2.2.3",
"pytimeparse>=1.1.8",
"s3fs>=2023.12.1",
"pympler>=1.0.1",
"anyio>=4.11.0",
"asyncer>=0.0.9",
]
[project.scripts]
flowdapt = "flowdapt.cli:cli"
[dependency-groups]
dev = [
"autopep8>=2.0.1",
"pre-commit>=3.1.1",
"pytest>=7.2.2",
"mypy>=0.991",
"pytest-asyncio>=0.20.3",
"coverage>=7.2.1",
"mkdocs>=1.4.0",
"mkdocs-material>=9.1.0",
"pytest-mock>=3.10.0",
"mkdocs-click>=0.8.0",
"types-pyyaml>=6.0.12.9",
"mkdocstrings[python]==0.28.2",
"docdantic==0.3.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
exclude = ["tests", "flowdapt/lib/database/migrate"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "C", "B"]
ignore = ["E226", "E302", "E722", "E731"]
[tool.ruff.lint.mccabe]
max-complexity = 15
[tool.ruff.lint.isort]
lines-after-imports = 2
[tool.mypy]
plugins = "pydantic.mypy"
ignore_missing_imports = "True"
[tool.pytest.ini_options]
addopts = "-s -p no:warnings"
testpaths = [
"tests",
]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
log_cli = "True"
log_auto_indent = "False"
[tool.coverage.run]
source = ["flowdapt"]
[tool.coverage.report]
ignore_errors = "true"
[tool.coverage.xml]
output = "coverage.xml"