pyproject.toml
| 1 | [project] |
| 2 | name = "muse" |
| 3 | version = "0.1.1" |
| 4 | description = "Muse — domain-agnostic version control for multidimensional state" |
| 5 | readme = "README.md" |
| 6 | requires-python = ">=3.11" |
| 7 | dependencies = [ |
| 8 | "typer>=0.9.0", |
| 9 | "toml>=0.10.0", |
| 10 | "mido>=1.3.0", |
| 11 | ] |
| 12 | |
| 13 | [project.scripts] |
| 14 | muse = "muse.cli.app:cli" |
| 15 | |
| 16 | [project.optional-dependencies] |
| 17 | dev = [ |
| 18 | "pytest>=8.0.0", |
| 19 | "pytest-asyncio>=0.23.0", |
| 20 | "pytest-cov>=4.1.0", |
| 21 | "anyio>=4.2.0", |
| 22 | "mypy>=1.8.0", |
| 23 | ] |
| 24 | |
| 25 | [build-system] |
| 26 | requires = ["hatchling"] |
| 27 | build-backend = "hatchling.build" |
| 28 | |
| 29 | [tool.pytest.ini_options] |
| 30 | asyncio_mode = "auto" |
| 31 | testpaths = ["tests"] |
| 32 | cache_dir = "/tmp/pytest_cache" |
| 33 | addopts = "-v --tb=short" |
| 34 | |
| 35 | [tool.mypy] |
| 36 | python_version = "3.11" |
| 37 | strict = true |
| 38 | explicit_package_bases = true |
| 39 | namespace_packages = true |
| 40 | warn_unreachable = true |
| 41 | show_error_codes = true |
| 42 | |
| 43 | [[tool.mypy.overrides]] |
| 44 | module = ["tests.*"] |
| 45 | disallow_untyped_decorators = false |
| 46 | |
| 47 | [[tool.mypy.overrides]] |
| 48 | module = ["mido", "toml"] |
| 49 | ignore_missing_imports = true |
| 50 | |
| 51 | [tool.hatch.build.targets.wheel] |
| 52 | packages = ["muse"] |