-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (65 loc) · 1.69 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "moe_transcode"
version = "1.1.0"
description = "Plugin for Moe to transcode music."
authors = ["Jacob Pavlock <[email protected]>"]
documentation = "https://moe-transcode.readthedocs.io/en/latest/"
license = "MIT"
readme = "README.rst"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
moe = "^2.0.0"
[tool.poetry.group.test.dependencies]
debugpy = "^1.4.1"
pytest = "^8.0.0"
pytest-cov = "^4.0.0"
[tool.poetry.group.lint.dependencies]
black = "^24.0.0"
commitizen = "^3.0.0"
darglint = "^1.8.1"
flake8 = "^7.0.0"
flake8-alphabetize = "^0.0.19"
flake8-bugbear = "^24.0.0"
flake8-comprehensions = "^3.10.0"
flake8-docstrings = "^1.5.0"
flake8-pytest-style = "^1.6.0"
flake8-use-fstring = "^1.1"
"github3.py" = "^3.2.0"
isort = "^5.10.1"
mccabe = "^0.7.0"
pre-commit = "^3.0.0"
pyright = "^1.1.267"
[tool.poetry.group.docs.dependencies]
furo = "*"
pypandoc = "^1.9"
Sphinx = "^7.0.0"
[tool.poetry.plugins."moe.plugins"]
"transcode" = "moe_transcode"
[tool.commitizen]
name = "cz_customize"
version = "1.1.0"
version_files = [
"pyproject.toml:^version",
]
tag_format = "v$version"
[tool.commitizen.customize]
schema_pattern = '(build|ci|deprecate|docs|feat|fix|perf|refactor|release|style|test)(\(\w+\))?!?:\s\S.*'
[tool.isort]
profile = 'black'
[tool.pytest.ini_options]
log_cli_level = 10
addopts = "--color=yes"
markers = [
"network: tests that make network calls",
"darwin: tests that should only run on apple",
"linux: tests that should only run on linux",
"win32: tests that should only run on windows"
]
[tool.pyright]
exclude = [
"alembic", "tests"
]
pythonPlatform = "All"
[build-system]
requires = ["poetry-core>=1.0"]
build-backend = "poetry.core.masonry.api"