This repository has no description
0

Configure Feed

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

1[project] 2name = "oreo" 3version = "3.0.0" 4description = "A syvl.org helper 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" 14scripts.oreo = "oreo.oreo:oreo" 15urls."Source code" = "https://tangled.sh/@syvl.org/oreo" 16dependencies = ["bundle"] 17 18[build-system] 19requires = ["hatchling"] 20build-backend = "hatchling.build" 21 22[tool.hatch.build.targets.wheel] 23packages = [ "oreo" ] 24 25[tool.uv.sources] 26bundle = { workspace = true } 27 28[tool.uv.workspace] 29members = ["packages/*"] 30 31[tool.pytest.ini_options] 32xfail_strict = true 33addopts = "--dist loadgroup -n auto --order-group-scope class -rs --strict-markers --suppress-no-test-exit-code -vvv -x" 34 35[dependency-groups] 36dev = [ 37 "hypothesis>=6.131.15", 38 "pytest>=8.3.5", 39 "pytest-custom-exit-code>=0.3.0", 40 "pytest-order>=1.3.0", 41 "pytest-parametrized>=1.7", 42 "pytest-randomly>=3.16.0", 43 "pytest-repeat>=0.9.4", 44 "pytest-sugar>=1.0.0", 45 "pytest-xdist>=3.6.1", 46 "tzdata>=2025.2", 47] 48lint = [ 49 "ruff>=0.11.9", 50]