-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (53 loc) · 1.46 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
[tool.poetry]
name = "ethereum-alchemy-pipeline"
version = "0.1.0"
description = "This package contains functions to extract transaction data from the Ethereum blockchain and saves it to a CSV file."
authors = ["JBrien Barcoma <[email protected]>"]
readme = "README.md"
keywords = ["Ethereum", "Alchemy", "CSV", "Data", "Pipeline", "Kafka"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Data Engineers",
"Topic :: Data Science :: Data Pipeline",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
]
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
web3 = "^6.20.1"
alchemy-sdk = "^0.1.1"
dataclass-wizard = "^0.22.3"
eth_utils = "^2.0.0"
python-dotenv = "^1.0.0"
pandas = "^2.0.0"
polars = "^0.18.0"
pymongo = "^4.8.0"
kafka-python-ng = "^2.2.2"
pyspark = "^3.5.2"
[tool.poetry.group.visualization.dependencies]
numpy = "^1.23.0"
seaborn = "^0.12.0"
plotly = "^5.10.0"
matplotlib = "^3.6.0"
[tool.poetry.group.dashboard.dependencies]
streamlit = "^1.18.0"
dash = "^2.17.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
black = "^22.0.0"
isort = "^5.10.0"
flake8 = "^5.0.0"
ipykernel = "^6.29.5"
[tool.poetry.group.docs.dependencies]
sphinx = "^4.0.0"
sphinx_readme = "^0.2.0"
sphinx-rtd-theme = "^1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py312']
[tool.isort]
profile = "black"