-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (36 loc) · 965 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "streamlit-ds-courses"
version = "1.0.0"
description = "An interactive Streamlit dashboard that gives insights on data science courses"
authors = ["Anton Kozyriev"]
license = "None"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dashboard.dependencies]
streamlit = "^1.22.0"
scikit-learn = "^1.2.2"
plotly = "^5.14.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.267"
pytest = "^7.3.1"
[tool.poetry.group.pipeline]
optional = true
[tool.poetry.group.pipeline.dependencies]
pyspark = "^3.4.0"
numpy = "^1.24.3"
[tool.poetry.group.webcrawl]
optional = true
[tool.poetry.group.webcrawl.dependencies]
scrapy = "^2.9.0"
selenium = "^4.10.0"
pandas = "^2.0.3"
scrapy-splash = "^0.9.0"
[tool.ruff]
select = ["A", "B", "C4", "E", "EM", "F", "I", "Q", "UP"]
ignore = ["E501"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"