-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (80 loc) · 1.91 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "conversational-patterns"
version = "0.1.0"
description = "Research implementation of human-like conversational patterns in Virtual Humans"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = ["conversational-ai", "virtual-humans", "nlp"]
authors = [
{ name = "Your Name", email = "your.email@example.com" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"accelerate>=0.25.0",
"anthropic>=0.20.0",
"black>=23.3.0",
"chromadb>=0.4.22",
"datasets>=2.14.0",
"faiss-cpu>=1.8.0",
"fastapi>=0.100.0",
"flake8>=6.0.0",
"huggingface-hub>=0.16.0",
"hypothesis>=6.75.3",
"isort>=5.12.0",
"langchain-community>=0.0.13",
"langchain-core>=0.1.17",
"langchain-openai>=0.0.5",
"matplotlib>=3.7.0",
"mypy>=1.3.0",
"networkx>=3.1",
"numpy>=1.24.0",
"ollama>=0.1.0",
"openai>=1.9.0",
"pydantic>=2.5.3",
"pytest>=7.0.0",
"python-dotenv>=1.0.0",
"ray>=2.5.0",
"redis>=5.0.1",
"scikit-learn>=1.2.0",
"scipy>=1.10.0",
"seaborn>=0.12.2",
"sentence-transformers>=2.2.0",
"smolagents>=0.1.3",
"torch>=2.0.0",
"torchmetrics>=0.11.0",
"tqdm>=4.65.0",
"transformers>=4.30.0",
"typing-extensions>=4.5.0",
]
[project.optional-dependencies]
dev = [
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.21.0",
"bandit>=1.7.5",
"pre-commit>=3.3.3",
]
[tool.black]
line-length = 88
target-version = ["py39"]
[tool.isort]
profile = "black"
multi-line-output = 3
[tool.mypy]
python-version = "3.9"
strict = true
warn-return-any = true
warn-unused-configs = true
disallow-untyped-defs = true
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q --cov=src"
testpaths = ["tests"]
pythonpath = ["src"]