Spaces:
				
			
			
	
			
			
		Runtime error
		
	
	
	
			
			
	
	
	
	
		
		
		Runtime error
		
	| [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 = [] | |