This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 729 B View raw
1[project] 2name = "bundle" 3version = "0.1.0" 4description = "A syvl.org typed CLI system!" 5readme = "README.md" 6authors = [ 7 { name = "Jeet Ray", email = "jeet.ray@syvl.org" } 8] 9maintainers = [ 10 { name = "Jeet Ray", email = "jeet.ray@syvl.org" } 11] 12requires-python = ">=3.14" 13license = "MIT" 14urls."Source code" = "https://tangled.sh/@syvl.org/bundle" 15dependencies = [ 16 "jugulis", 17 "magicattr>=0.1.6", 18 "pathvalidate>=3.2.3", 19 "plum-dispatch>=2.5.7", 20 "rich-click>=1.8.9", 21] 22 23[build-system] 24requires = ["hatchling"] 25build-backend = "hatchling.build" 26 27[tool.hatch.build.targets.wheel] 28packages = [ "bundle" ] 29 30[tool.uv.sources] 31jugulis = { workspace = true } 32 33[dependency-groups] 34dev = [ 35 "thefuzz>=0.22.1", 36]