-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
101 lines (88 loc) · 2.06 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[tool.poetry]
name = "sloyka"
version = "0.2.3"
description = "Library for city identity analysis from social media posts and comments"
authors = ["sandrro, georgekontsevik"]
readme = "README.md"
packages = [{ include = "sloyka" }]
[tool.poetry.dependencies]
python = ">=3.10.6,<3.12"
pandas = "2.2.2"
matplotlib = "3.7.0"
seaborn = "0.12.2"
nltk = "3.8.1"
scikit-learn = "1.4.2"
spacy = "3.5.0"
fuzzywuzzy = "0.18.0"
geopandas = "0.12.2"
numpy = "1.25.2"
flair = "0.12.2"
networkx = "3.3"
osm2geojson = "0.2.3"
osmnx = "1.5.1"
pymorphy2 = "0.9.1"
pymorphy2-dicts-ru = "2.4.417127.4579844"
torch = "2.1.1"
tqdm = "4.64.1"
geopy = "2.3.0"
shapely = "2.0.1"
transformers = "4.26.1"
bertopic = "0.15.0"
autodocsumm = "0.2.11"
flake8 = "6.0.0"
isort = "5.12.0"
black = "23.1.0"
pylint = "3.0.2"
vk-api = "11.9.9"
natasha = "1.6.0"
loguru = "0.7.2"
pandarallel = "1.6.5"
pymorphy3 = "2.0.1"
keybert = "0.8.3"
pyarrow = "15.0.0"
jupyter = "^1.0.0"
testresources = "^2.0.1"
rapidfuzz = "^3.9.0"
osmapi = "^4.0.0"
aniemore = "^1.2.3"
scipy = "1.12"
folium = "^0.16.0"
furo = "^2024.5.6"
readthedocs-sphinx-search = "^0.3.2"
sphinx-autobuild = "^2024.4.16"
sphinx-design = "^0.6.0"
sphinx-hoverxref = "^1.4.0"
sphinx-inline-tabs = "^2023.4.21"
sphinx-issues = "^4.1.0"
sphinx-notfound-page = "^1.0.2"
sphinx = "^7.3.7"
myst-parser = "^3.0.1"
sphinx-rtd-theme = "^2.0.0"
mapclassify = "^2.6.1"
hypernetx = "^2.3.5"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
furo = "^2024.5.6"
readthedocs-sphinx-search = "^0.3.2"
sphinx-autobuild = "^2024.4.16"
sphinx-design = "^0.6.0"
sphinx-hoverxref = "^1.4.0"
sphinx-inline-tabs = "^2023.4.21"
sphinx-issues = "^4.1.0"
sphinx-notfound-page = "^1.0.2"
sphinx = "^7.3.7"
myst-parser = "^3.0.1"
sphinx-rtd-theme = "^2.0.0"
[tool.poetry.group.test.dependencies]
pytest = "7.4.3"
[tool.poetry.group.dev.dependencies]
ipykernel = "6.29.0"
[build-system]
requires = ["poetry-core", "setuptools", "wheel", "distutils"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = 'black'
line_length = 120