ctp-slack-bot / pyproject.toml
LiKenun's picture
WebVTT overlapping chunk windows proof-of-concept
7da3deb
raw
history blame
2.24 kB
[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 = [
"more-itertools>=10.6.0",
"dependency-injector>=4.46.0",
"pydantic>=2.11.2",
"pydantic-settings>=2.8.1",
# "fastapi>=0.115.12",
# "uvicorn>=0.34.0",
"loguru>=0.7.3",
"python-dotenv>=1.1.0",
"httpx>=0.28.1",
"tenacity>=9.1.2",
"pybreaker>=1.3.0",
"pytz>=2025.2",
"apscheduler>=3.11.0",
"aiohttp>=3.11.16",
"slack-sdk>=3.35.0",
"slack_bolt>=1.23.0",
"pymongo>=4.11.3 ",
"webvtt-py>=0.5.1",
"openai>=1.70.0",
# "langchain>=0.3.23",
# "transformers>=4.51.0",
# "torch>=2.6.0",
]
[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 = []