-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (51 loc) · 1.24 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
[tool.poetry]
name = "euterpe"
version = "0.2.2"
description = ""
authors = ["Brice Santus <[email protected]>"]
readme = "README.md"
packages = [{include = "euterpe"}]
[tool.poetry.dependencies]
python = "^3.10"
uvicorn = "^0.23.2"
fastapi = "^0.103.1"
sqlalchemy = "^2.0.20"
typer = {version = "^0.9.0", extras = ["all"]}
spotipy = "^2.23.0"
spidev = "^3.6"
mfrc522 = "^0.0.7"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
pdbpp = "^0.10.3"
isort = "^5.12.0"
pylint = "^2.17.5"
[tool.poetry.group.semver.dependencies]
python-semantic-release = "^8.1.1"
[tool.black]
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| build
| dist
)/
)
'''
line-length = 120
target-version = ['py310']
[tool.isort]
py_version = 310
line_length = 120
profile = "black"
[tool.semantic_release]
version_variables = ["euterpe/__init__.py:__version__"]
version_toml = ["pyproject.toml:tool.poetry.version"]
version_source = "tag"
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
branch = "main"
build_command = "pip install poetry && poetry build"
hvcs = "github"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"