1
0
mirror of synced 2024-11-14 10:27:45 +01:00
jubeatools/pyproject.toml

45 lines
1.1 KiB
TOML

[tool.poetry]
name = "jubeatools"
version = "1.4.0"
description = "A toolbox for jubeat file formats"
authors = ["Stepland <10530295-Buggyroom@users.noreply.gitlab.com>"]
readme = "README.md"
repository = "https://gitlab.com/Buggyroom/jubeatools"
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.0.3"
simplejson = "^3.17.0"
marshmallow = "^3.6.0"
parsimonious = "^0.8.1"
more-itertools = "^8.4.0"
sortedcontainers = "^2.3.0"
python-constraint = "^1.4.0"
construct = "^2.10"
construct-typing = "^0.4.2"
marshmallow-dataclass = {extras = ["enum", "union"], version = "^8.5.3"}
typing-inspect = "= 0.7.1" # 0.8.0 breaks something in marshmallow-dataclass
[tool.poetry.dev-dependencies]
pytest = "^6.2.3"
rope = "^0.17.0"
black = "^22.1.0"
hypothesis = "^6.23.4"
mypy = "^0.910"
isort = "^5.10.1"
toml = "^0.10.2"
flake8 = "^3.9.1"
autoimport = "^1.2.2"
types-simplejson = "^3.17.1"
types-toml = "^0.10.1"
[tool.poetry.scripts]
jubeatools = 'jubeatools.cli.cli:convert'
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"