-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.13 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
[tool.poetry]
name = "pc-games-e-commerce"
version = "0.1.0"
description = "Analysis of PC games e-commerce around brazilian regions"
authors = ["Marcos Gabriel <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
tqdm = "^4.66.1"
python-dotenv = "^1.0.0"
streamlit = "^1.27.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.2.0"
pylint = "^2.17.0"
ipykernel = "^6.25.2"
commitizen = "^2.42.1"
[tool.poetry.group.web-scrapping.dependencies]
scrapeops-scrapy = "^0.5.3"
beautifulsoup4 = "^4.12.2"
scrapy = "^2.11.0"
scrapy-user-agents = "^0.1.1"
[tool.poetry.group.etl.dependencies]
pandas = "^2.1.1"
dagster = "^1.4.17"
dagster-webserver = "^1.4.17"
[tool.poetry.group.test.dependencies]
pytest = "~7.2.2"
pandera = "^0.15.1"
hypothesis = "^6.76.0"
[tool.poetry.group.visualization.dependencies]
plotly = "^5.17.0"
seaborn = "^0.13.0"
[tool.commitizen]
name = "cz_conventional_commits"
update_changelog_on_bump = true
version_provider = "poetry"
version = "1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"