Spaces:
Running
Running
File size: 940 Bytes
c006516 12a4666 c006516 12a4666 c006516 9c8bec4 c006516 95e41ba c006516 12a4666 c006516 61bca43 c006516 12a4666 c006516 30dcc98 c006516 9c8bec4 b9bfc05 c006516 a728009 12a4666 c006516 |
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 |
[project]
name = "iscc-playground"
version = "0.1.0"
description = "UI for ISCC exploration"
authors = [{ name = "Titusz", email = "[email protected]" }]
requires-python = ">=3.12,<3.13"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
"gradio==5.33.2",
"iscc-sdk==0.6.2",
"iscc-core==1.2.1",
"iscc-sci==0.1.0",
"plotly==5.22.0",
]
[dependency-groups]
dev = [
"poethepoet>=0.35.0",
"ruff",
"mdformat",
"mdformat-gfm",
"mdformat-gfm-alerts",
"mdformat_frontmatter",
]
[tool.uv]
package = false
[tool.ruff]
line-length = 112
[tool.poe.tasks]
format-code = { cmd = "uv run ruff format", help = "Code style formating with ruff" }
format-markdown = { cmd = "uv run mdformat --wrap 112 --end-of-line lf README.md CLAUDE.local.md", help = "Markdown formating with mdformat" }
all = ["format-markdown", "format-code"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
|