Spaces:
Runtime error
Runtime error
File size: 2,065 Bytes
005a292 307cacc 005a292 307cacc 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 |
[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>=2.0.0",
"pydantic-settings>=2.0.0",
"fastapi>=0.100.0",
"uvicorn>=0.22.0",
"loguru>=0.7.0",
"python-dotenv>=1.0.0",
"httpx>=0.24.1",
"tenacity>=8.2.2",
"pybreaker>=1.0.2",
"pytz>=2025.2",
"apscheduler>=3.10.1",
"slack-sdk>=3.21.3",
"pymongo>=4.4.1",
"webvtt-py>=0.4.6",
"langchain>=0.0.200",
"transformers>=4.30.0",
"torch>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.3.1",
"pytest-cov>=4.1.0",
"mypy>=1.3.0",
"black>=23.3.0",
"isort>=5.12.0",
"ruff>=0.0.270",
]
[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 = []
|