mirror of
https://github.com/ruvnet/RuView
synced 2026-07-28 18:21:42 +00:00
feat: vendor midstream and sublinear-time-solver libraries
Add ruvnet/midstream (AIMDS real-time inference) and ruvnet/sublinear-time-solver (sublinear optimization algorithms) as vendored dependencies under vendor/. Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
[tool.poetry]
|
||||
name = "hyprstream-client"
|
||||
version = "0.1.0"
|
||||
description = "Python client for Hyprstream metrics service"
|
||||
authors = ["Erica Windisch <erica@cyberdione.ai>"]
|
||||
readme = "README.md"
|
||||
packages = [{include = "hyprstream_client"}]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.11"
|
||||
numpy = "1.24.3"
|
||||
pandas = "2.0.3"
|
||||
pyarrow = "12.0.1"
|
||||
adbc-driver-flightsql = "0.8.0"
|
||||
typing-extensions = "4.8.0"
|
||||
click = "^8.1.7"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
pytest = "^7.4.3"
|
||||
black = "^23.11.0"
|
||||
isort = "^5.12.0"
|
||||
mypy = "^1.7.0"
|
||||
ruff = "^0.1.5"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
hyprstream = "hyprstream_client.cli:cli"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.black]
|
||||
line-length = 88
|
||||
target-version = ['py38']
|
||||
include = '\.pyi?$'
|
||||
|
||||
[tool.isort]
|
||||
profile = "black"
|
||||
multi_line_output = 3
|
||||
|
||||
[tool.mypy]
|
||||
python_version = "3.8"
|
||||
warn_return_any = true
|
||||
warn_unused_configs = true
|
||||
disallow_untyped_defs = true
|
||||
check_untyped_defs = true
|
||||
|
||||
[tool.ruff]
|
||||
select = ["E", "F", "B", "I"]
|
||||
ignore = []
|
||||
line-length = 88
|
||||
target-version = "py38"
|
||||
Reference in New Issue
Block a user