Spaces:
Runtime error
Runtime error
File size: 2,264 Bytes
005a292 bb7c9a3 fafc982 c5fe6f5 c21d29c fafc982 c21d29c 307cacc fafc982 c21d29c bb7c9a3 1b9bbe2 c21d29c fafc982 8ec2c5a 235d1cb c21d29c 92e41ba 6deb275 005a292 fafc982 64566ca fafc982 92e41ba 005a292 |
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 |
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ctp-slack-bot"
version = "0.1.0"
description = "A Slack bot for processing and analyzing Zoom transcripts using AI"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "[email protected]"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pydantic[email]>=2.11.2",
"pydantic-settings>=2.8.1",
"cachetools>=5.5.2",
"more-itertools>=10.6.0",
"python-dotenv>=1.1.0",
"loguru>=0.7.3",
"dependency-injector>=4.46.0",
"pytz>=2025.2",
"apscheduler>=3.11.0",
# "tenacity>=9.1.2",
# "pybreaker>=1.3.0",
"httpx>=0.28.1",
"aiohttp>=3.11.16",
"webvtt-py>=0.5.1",
"slack-sdk>=3.35.0",
"slack_bolt>=1.23.0",
"pymongo>=4.11.3 ",
"motor>=3.7.0",
"openai>=1.70.0",
"google-api-python-client>=2.167.0",
"google-auth>=2.39.0",
"google-auth-oauthlib>=1.2.1"
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
"mypy>=1.15.0",
"types-pytz>=2025.2",
"black>=25.1.0",
"isort>=6.0.1",
"ruff>=0.11.4"
]
[project.urls]
"Homepage" = "https://github.com/yourusername/ctp-slack-bot"
"Bug Tracker" = "https://github.com/yourusername/ctp-slack-bot/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
strict_optional = true
[[tool.mypy.overrides]]
module = ["apscheduler.*", "webvtt.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
[tool.black]
line-length = 88
target-version = ['py312']
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 88
[tool.ruff]
line-length = 88
target-version = "py312"
select = ["E", "F", "B", "I"]
ignore = []
|