-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (54 loc) · 1.39 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
62
[tool.poetry]
name = "popular-repositories-analysis"
description = "Analyzing popular GitHub repositories for UVP project"
authors = ["filips123 <projects@filips.si>"]
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.scraper.dependencies]
requests = "^2.32.3"
beautifulsoup4 = { version = "^4.12.3", extras = ["lxml"] }
pygithub = "^2.3.0"
tqdm = "^4.66.4"
orjson = "^3.10.6"
[tool.poetry.group.analysis.dependencies]
pandas = "^2.2.2"
numpy = "^2.0.0"
scipy = "^1.14.0"
matplotlib = "^3.9.1"
seaborn = "^0.13.2"
wordcloud = "^1.9.3"
folium = "^0.17.0"
local-geocode = "^0.0.2"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
mypy = "^1.10.1"
ruff = "^0.1.15"
notebook = "^7.2.1"
types-requests = "^2.32.0"
types-beautifulsoup4 = "^4.12.0"
types-tqdm = "^4.66.0"
[tool.ruff]
line-length = 110
select = ["F", "E", "W", "UP", "B", "G", "RUF"]
ignore = ["E203", "E501", "F401"]
[tool.black]
line-length = 110
[tool.mypy]
python_version = "3.10"
show_column_numbers = true
show_error_codes = true
allow_redefinition = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
warn_no_return = true
warn_return_any = true
warn_unreachable = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"