Spaces:
Sleeping
Sleeping
File size: 1,555 Bytes
0c591a7 | 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 | [build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-strategy-copilot"
version = "1.0.0"
description = "AI-Powered Strategic Analysis with Self-Correcting Quality Control"
readme = "README.md"
authors = [{name = "VN", email = "vn6295337@example.com"}]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Business/Commerce",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business",
]
dependencies = [
"streamlit>=1.31.0",
"langchain>=0.1.0",
"langchain-community>=0.1.0",
"langchain-core>=0.1.0",
"langsmith>=0.1.0",
"tavily-python>=0.1.0",
"python-dotenv>=1.0.0",
]
requires-python = ">=3.11"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=5.0.0",
"pylint>=2.15.0",
]
[project.urls]
Homepage = "https://github.com/vn6295337/AI-Strategy-Copilot"
Repository = "https://github.com/vn6295337/AI-Strategy-Copilot"
Documentation = "https://github.com/vn6295337/AI-Strategy-Copilot/tree/main/docs"
[project.scripts]
ai-strategy-copilot = "app:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.coverage.run]
source = ["src"] |