-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.46 KB
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
[project]
name = "skillflow"
version = "0.1.0"
description = "Add your description here"
requires-python = ">=3.11"
authors = [
{name = "dimflix", email = "dimflix.official@gmail.com"},
{name = "sweepyd1", email = "dima10yashin@gmail.com"},
{name = "vasilisqq", email = "ertybasevk@gmail.com"},
{name = "AsDo001", email = "arsdon2006@gmail.com"},
]
keywords = ["skills", "courses", "python", "uv"]
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICEN[CS]E*"]
dependencies = [
"aiogram>=3.18.0",
"g4f>=0.4.7.7",
"google-api-python-client>=2.162.0",
"gtts>=2.5.4",
"loguru>=0.7.3",
"openai-whisper>=20240930",
"pydantic>=2.10.6",
"pydantic-settings>=2.8.1",
"pydub>=0.25.1",
"speechbrain>=1.0.2",
"speechrecognition>=3.14.1",
"transformers>=4.49.0",
"uvloop>=0.21.0",
]
[project.urls]
Homepage = "https://github.com/DIMFLIX-OFFICIAL/SkillFlow"
Documentation = "https://github.com/DIMFLIX-OFFICIAL/SkillFlow/wiki"
Repository = "https://github.com/DIMFLIX-OFFICIAL/SkillFlow.git"
"Bug Tracker" = "https://github.com/DIMFLIX-OFFICIAL/SkillFlow/issues"
Changelog = "https://github.com/DIMFLIX-OFFICIAL/SkillFlow/blob/master/CHANGELOG.md"
[tool.pytest.ini_options]
pythonpath = "example"
[dependency-groups]
dev = [
"detect-secrets>=1.5.0",
"pre-commit>=4.1.0",
"pytest>=8.3.4",
"ruff>=0.9.6",
]
[tool.bandit]
exclude_dirs = ["tests", "docs"]
skips = ["B404", "B603"]
tests = ["B102", "B101", "B301"]