-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 909 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "realbook"
version = "0.1.0"
description = "A simple program to create lead sheets as those found on the realbook"
authors = ["Erick G. Islas-Osuna <erickisos653@gmail.com>"]
packages = [
{ include = "realbook", from = "src" }
]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
PySide6 = "^6.5.2"
[tool.poetry.dev-dependencies]
tox = "^4.23.2"
mypy = "^1.13"
black = "^24.4.2"
isort = "^5.13.2"
bandit = "^1.7.9"
flake8 = "^7.1.1"
pytest = "^8.3.2"
pre-commit = "^3.8.0"
hypothesis = {extras = ["zoneinfo"], version = "^6.119.4"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length=79
skip-string-normalization = true
target-version=['py39']
preview = true
exclude = '''
/(
/.git
| /.mypy_cache
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true