Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
58 changes: 58 additions & 0 deletions .ipynb_checkpoints/pyproject-checkpoint.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "libucks"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.0",
"sentence-transformers>=3.0",
"numpy>=1.26",
"anthropic>=0.40",
"httpx>=0.27",
"pyyaml>=6.0",
"tree-sitter>=0.22",
"gitpython>=3.1",
"scipy>=1.13",
"scikit-learn>=1.5",
"watchdog>=4.0",
"unidiff>=0.7",
"click>=8.1",
"rich>=13.0",
"mcp>=1.0",
"structlog>=24.0",
]

[project.optional-dependencies]
latent = [
"torch==2.4.1; sys_platform == 'linux' or (sys_platform == 'darwin' and platform_machine == 'arm64')",
"torch>=2.2,<=2.2.2; sys_platform == 'darwin' and platform_machine == 'x86_64' and python_version < '3.13'",
"bitsandbytes>=0.43; sys_platform == 'linux'",
"bitsandbytes>=0.43; sys_platform == 'darwin' and platform_machine == 'arm64'",
"transformers>=4.40",
"accelerate>=0.28",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-timeout>=2.3",
"respx>=0.21",
"jsonschema>=4.22",
]

[project.scripts]
libucks = "libucks._cli:cli"

[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"slow: marks tests that load the embedding model (deselect with '-m not slow')",
"gpu: marks tests that require a real model and GPU (deselect with '-m not gpu')",
]

[tool.setuptools.packages.find]
where = ["."]
include = ["libucks*"]
Loading