-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (27 loc) · 884 Bytes
/
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
[tool.poetry]
name = "txt2musicxml"
version = "0.1.10"
description = "CLI tool to convert chords written in simple text to musicxml files that can be used with a music notation software"
authors = ["noamtamir <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/noamtamir/txt2musicxml"
homepage = "https://github.com/noamtamir/txt2musicxml"
keywords = ["musicxml", "music", "xml", "chords"]
[tool.poetry.dependencies]
python = "^3.9"
antlr4-python3-runtime = "^4.13.2"
[tool.poetry.group.dev.dependencies]
mypy = "^1.13.0"
black = "^24.10.0"
flake8 = "^7.1.1"
isort = "^5.13.2"
pytest = "^8.3.3"
types-antlr4-python3-runtime = "^4.13.0.20240519"
[tool.mypy]
exclude = "txt2musicxml/grammer"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
txt2musicxml = 'txt2musicxml.main:main'