-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (45 loc) · 1.25 KB
/
pyproject.toml
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
45
46
47
[project]
name = "xfmido"
dynamic = ["version"]
description = "A modified version of the Mido library to handle XF format MIDI files."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"mido~=1.3",
]
authors = [
{ name="shimajiroxyz" },
]
keywords = ["midi", "xfmido", "music"]
license = { file="LICENSE" }
classifiers = [
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
urls = { "Homepage" = "https://github.com/jiroshimaya/xfmido" }
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"ipython>=8.28.0",
"pytest>=8.3.3",
"ipykernel>=6.29.5",
"taskipy>=1.13.0",
"numpy"
]
[tool.hatch.version]
source = "vcs"
[tool.pytest.ini_options]
addopts = "-m 'not workflow'"
markers = [
"workflow: Marker indicating tests related to github actions workflows",
]
[tool.taskipy.tasks]
test-workflow-py = "pytest -m 'workflow' --override-ini=addopts="
test-workflow = "bats tests/workflow/test_workflow.bats"
act-sample = "act -j publish -W .github/workflows/publish-to-testpypi.yaml -e tests/workflow/event.json"
test = "pytest"
lint = "uvx ruff check ."
format = "uvx ruff format ."