-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.26 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
[tool.poetry]
name = "tgov-scraper"
version = "0.1.0"
description = "A set of scripts and notebooks for exploring Tulsa Government Access Television"
authors = ["jdungan <[email protected]>", "groovecoder <[email protected]>"]
readme = "README.md"
packages = [{include = "src"}, {include = "db"}]
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
selectolax = "^0.3.28"
aiohttp = "^3.11.13"
pytest-asyncio = "^0.25.3"
pydantic = "^2.10.6"
matplotlib = "^3.10.1"
ipykernel = "^6.29.5"
pandas = "^2.2.3"
ipywidgets = "^8.1.5"
tqdm = "^4.67.1"
m3u8 = "^6.0.0"
requests = "^2.32.3"
pydub = "^0.25.1"
moviepy = "^2.1.2"
jupyter = "^1.1.1"
jupyter-nbextensions-configurator = "^0.6.4"
python-dotenv = "^1.0.1"
aiofiles = "^24.1.0"
faster-whisper = "^1.1.1"
prefect = "^3.3.0"
boto3 = "^1.37.24"
dyntastic = "^0.18.0"
dateparser = "^1.2.1"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
ipykernel = "^6.29.5"
jupyter = "^1.1.1"
nbstripout = "^0.8.1"
pre-commit = "^4.2.0"
pytest = "^8.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::UserWarning",
]