-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
71 lines (62 loc) · 1.33 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
[tool.poetry]
name = "clusterfun"
version = "0.6.1"
description = "Clusterfun - a plotting library to inspect data"
authors = ["Jochem Gietema <jochem@giete.ma>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
pandas = "^2.0.0"
pyarrow = ">=13,<17"
fastapi = "*"
uvicorn = "*"
orjson = "*"
boto3 = "^1.26.0"
requests = "*"
pillow = "*"
urllib3 = "<2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.1"
black = "^24.4.2"
pre-commit = "^2.20.0"
isort = "^5.13.2"
flake8 = "^6.0.0"
ipdb = "^0.13.11"
mypy = "^1.10.0"
types-pillow = "^9.4.0.17"
types-ujson = "^5.7.0.1"
types-requests = "^2.28.11.15"
pylint = "^3.1.0"
bumpversion = "^0.6.0"
jupyter = "^1.0.0"
ruff = "^0.4.7"
taskipy = "^1.12.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.poetry.scripts]
clusterfun = "clusterfun.serve_cli:main"
[tool.taskipy.tasks]
dev = "uvicorn clusterfun.main:APP --reload"
histogram = "python scripts/histogram.py"
scatter = "python scripts/scatter.py"
pie = "python scripts/pie.py"
violin = "python scripts/violin.py"
grid = "python scripts/grid.py"
audio = "python scripts/audio.py"
[tool.pylint."MESSAGES CONTROL"]
good-names = [
"df",
"f",
"y",
"x",
]
disable=[
"fixme",
"R0801"
]