-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 852 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
[tool.poetry]
name = "ghost-tail"
version = "0.1.0"
description = ""
authors = ["kureta <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
mido = "^1.3.0"
numpy = "^1.26.2"
dvc = { extras = ["gdrive", "s3", "ssh"], version = "^3.31.2" }
loguru = "^0.7.2"
python-dotenv = "^1.0.0"
rich = "^13.7.0"
cysystemd = "^1.6.0"
typer = "^0.9.0"
jupyterlab = "^4.1.5"
nbstripout = "^0.7.1"
matplotlib = "^3.8.3"
[tool.poetry.group.dev.dependencies]
isort = "^5.13.2"
black = "^24.2.0"
pre-commit = "^3.6.2"
[tool.poetry.scripts]
preprocess = "ghost_tail.cli:preprocess"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
venvPath = "/home/kureta/.cache/pypoetry/virtualenvs"
venv = "ghost-tail-Yy6Qr63q-py3.11"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120