-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (62 loc) · 1.57 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
[project]
name = "muscatplus_indexer"
description = ""
version = "v1.0.4"
authors = [{name = "Andrew Hankinson", email = "[email protected]"}]
requires-python = '>=3.11,<4.0'
dependencies = ['dbutils (>=3.0,<4.0)',
'mysqlclient (>=2.2.4,<3.0.0)', 'pyyaml (>=6.0.0,<7.0.0)',
'edtf @ git+https://github.com/rism-digital/python-edtf.git@performance-enhancements',
'httpx (>=0.28.0,<0.29.0)', 'verovio (>=4.4.0.dev118,<5.0.0)', 'sentry-sdk (>=2.0.0,<3.0.0)',
'orjson (>=3.10.3,<4.0.0)', 'pymarc @ git+https://gitlab.com/ahankinson/pymarc.git@optimize-fields',
'psycopg[pool] (==3.2.4)']
[tool.poetry]
package-mode = false
requires-poetry = '>=2.0,<3.0'
[tool.poetry.dependencies]
verovio = { allow-prereleases = true }
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[[tool.poetry.source]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
priority = "supplemental"
[tool.poetry.group.dev.dependencies]
ipython = "^8.0.0"
mypy = "^1.11.2"
[tool.black]
line-length = 121
[build-system]
requires = ['poetry-core (>=2.0,<3.0)']
build-backend = "poetry.masonry.api"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# pycodestyle warnings
"W",
# Pyflakes
"F",
# pyupgrade
## Flake8 plugins
"UP",
# flake8-bugbear
"B",
# flake8-comprehensions
"C",
# flake8-django
"DJ",
# flake8-bandit
"S",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = [
# Ignore Pycodestyle line-length warnings, (mainly long comments).
"E501",
# Ignore McCabe complexity (for now).
"C901",
]