-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (45 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
62 lines (45 loc) · 1.23 KB
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
[tool.poetry]
name = "cryptodata"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = ">3.9, <=3.13"
poethepoet = "^0.24.4"
redis = "^5.0.1"
[tool.poetry.group.scraper.dependencies]
selenium = "^4.14.0"
pendulum = "^3.0.0"
webdriver-manager = "^4.0.1"
[tool.poetry.group.kafka.dependencies]
kafka-python = "^2.0.2"
[tool.poetry.group.db.dependencies]
sqlalchemy = "^1.4.28"
psycopg2-binary = "^2.9.9"
[tool.poetry.group.airflow.dependencies]
apache-airflow-providers-docker = "^3.9.1"
apache-airflow-providers-http = "^4.6.0"
[tool.poetry.group.format.dependencies]
black = "^23.9.1"
autoflake = "^2.2.1"
isort = "^5.13.2"
[tool.poetry.group.wss.dependencies]
websockets = "^12.0"
[tool.poetry.group.ai.dependencies]
transformers = "^4.37.2"
torch = "^2.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 88
use_parentheses = true
[tool.poe.tasks]
autoflake = "autoflake --remove-all-unused-imports --recursive --remove-unused-variables --in-place ./ --exclude=__init__.py"
black = "black ./"
isort = "isort ./"
format = ["autoflake", "black", "isort"]