lynxkite / pyproject.toml
darabos's picture
Remove ty from pre-commit for now.
b00672d
raw
history blame
1.26 kB
# This is the workspace configuration. Each individual package has its own pyproject.toml.
[project]
name = "lynxkite-enterprise-workspace"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"lynxkite", "lynxkite-core", "lynxkite-graph-analytics[gpu]", "lynxkite-pillow-example",
"lynxkite-bio",
"lynxkite-lynxscribe",
]
classifiers = ["Private :: Do Not Upload"]
[tool.uv.sources]
lynxkite = { git = "https://github.com/lynxkite/lynxkite-2000", subdirectory = "lynxkite-app" }
lynxkite-core = { git = "https://github.com/lynxkite/lynxkite-2000", subdirectory = "lynxkite-core" }
lynxkite-graph-analytics = { git = "https://github.com/lynxkite/lynxkite-2000", subdirectory = "lynxkite-graph-analytics" }
lynxkite-pillow-example = { git = "https://github.com/lynxkite/lynxkite-2000", subdirectory = "lynxkite-pillow-example" }
lynxkite-bio = { workspace = true }
lynxkite-lynxscribe = { workspace = true }
[tool.uv.workspace]
members = [
"lynxkite-bio",
"lynxkite-lynxscribe",
]
[dependency-groups]
dev = [
"deptry>=0.23.0",
"mkdocs-material>=9.6.15",
"mkdocstrings[python]>=0.29.1",
"pre-commit>=4.2.0",
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"