1
0
mirror of synced 2024-12-03 18:57:16 +01:00
jubeatools/pyproject.toml

50 lines
1.1 KiB
TOML
Raw Normal View History

2020-05-31 18:04:35 +02:00
[tool.poetry]
name = "jubeatools"
2021-12-28 16:59:53 +01:00
version = "1.4.0"
2020-07-25 14:42:39 +02:00
description = "A toolbox for jubeat file formats"
2022-01-10 11:33:58 +01:00
authors = ["Stepland <10530295-Buggyroom@users.noreply.gitlab.com>"]
2020-05-31 18:04:35 +02:00
readme = "README.md"
2022-01-10 11:33:58 +01:00
repository = "https://gitlab.com/Buggyroom/jubeatools"
2020-05-31 18:04:35 +02:00
[tool.poetry.dependencies]
python = "^3.8"
2021-10-23 02:14:09 +02:00
click = "^8.0.3"
2021-04-28 23:56:36 +02:00
path = "^15.1.2"
2020-05-31 18:05:27 +02:00
simplejson = "^3.17.0"
2020-06-01 22:20:21 +02:00
marshmallow = "^3.6.0"
2020-06-08 01:56:10 +02:00
parsimonious = "^0.8.1"
2020-06-29 00:19:57 +02:00
more-itertools = "^8.4.0"
2021-04-28 23:56:36 +02:00
sortedcontainers = "^2.3.0"
python-constraint = "^1.4.0"
2021-05-17 13:58:06 +02:00
construct = "~=2.10"
2021-05-19 17:36:50 +02:00
construct-typing = "^0.4.2"
2021-12-27 02:05:27 +01:00
marshmallow-dataclass = {extras = ["enum", "union"], version = "^8.5.3"}
2020-05-31 18:04:35 +02:00
[tool.poetry.dev-dependencies]
2021-04-29 13:14:09 +02:00
pytest = "^6.2.3"
2020-05-31 18:05:27 +02:00
rope = "^0.17.0"
black = "^21.4b2"
2021-10-23 02:14:09 +02:00
hypothesis = "^6.23.4"
mypy = "^0.910"
2020-06-29 00:19:57 +02:00
isort = "^4.3.21"
toml = "^0.10.2"
2021-05-04 13:39:40 +02:00
flake8 = "^3.9.1"
autoimport = "^0.7.0"
2021-10-23 02:14:09 +02:00
types-simplejson = "^3.17.1"
2021-12-22 01:40:53 +01:00
types-toml = "^0.10.1"
2020-05-31 18:05:27 +02:00
[tool.poetry.scripts]
jubeatools = 'jubeatools.cli.cli:convert'
2020-05-31 18:04:35 +02:00
2020-07-08 16:07:15 +02:00
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
2020-05-31 18:04:35 +02:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"