-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (43 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
[tool.poetry]
name = "yourtube"
version = "0.7.0"
description = "Better youtube recommendations"
authors = ["Filip Sondej <[email protected]>"]
license = "LGPL-2.1"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
networkx = "^2.6.1"
tqdm = "^4.61.2"
requests = "^2.26.0"
matplotlib = "^3.4.2"
numpy = "^1.21.0"
magic-wormhole = "^0.12.0"
python-dateutil = "^2.8.2"
scipy = "^1.7.0"
youtube-transcript-api = "^0.4.1"
pickleDB = "^0.9.2"
sklearn = "^0.0"
panel = "^0.12.1"
neo4j = "^4.4.1"
krakow = "^0.2.0"
pyyaml = "^6.0.1"
[tool.poetry.dev-dependencies]
pre-commit = "^2.13.0"
pytest = "^6.2.4"
isort = "^5.9.3"
black = "^21.7b0"
pycln = "^1.0.3"
ipykernel = "^6.4.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
yourtube = 'yourtube.__init__:run'
yourtube-install = 'yourtube.__init__:install'
yourtube-scrape = 'yourtube.scraping:scrape_all_playlists'
yourtube-scrape-watched = 'yourtube.scraping:scrape_watched'
yourtube-scrape-transcripts = 'yourtube.scraping:scrape_transcripts_from_watched_videos'
[tool.black]
line-length = 100
[tool.isort]
profile = "black"