-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpyproject.toml
32 lines (29 loc) · 856 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
[tool.poetry]
name = "transfermarkt-datasets"
version = "0.1.0"
description = "Extract, prepare, publish and update Transfermarkt datasets."
authors = ["dcaribou <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8.1, <3.11, !=3.9.7"
pandas = "^1.4.2"
frictionless = "4.40.8"
pytest = "^7.1.2"
scipy = "^1.8.0"
streamlit = "1.25.0"
plotly = "^5.11.0"
transfermarkt-scraper = {git = "https://github.com/dcaribou/transfermarkt-scraper.git", branch = "main"}
dbt-duckdb = "1.7.0"
langchain = "^0.0.306"
openai = "^0.27.7"
duckdb-engine = "^0.7.3"
dvc = {extras = ["s3"], version = "^3.22.0"}
watchdog = "^3.0.0"
kaggle = "^1.6.11"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
autopep8 = "^1.7.0"
datacompy = "^0.9.0"
data-diff = "0.9.17"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"