-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
120 lines (101 loc) · 4.17 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[tool.poetry]
name = "calmlib"
version = "1.0.14" # add aquery_gpt
description = "Calmlib"
authors = ["Reliable Magician <[email protected]>"]
readme = "README.md"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
# todo: cleanup dependencies to speed up installation and resolving
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
loguru = ">=0.7"
# for parsing version
toml = ">=0.10"
python-dotenv = "*"
deprecated = "^1.2.17"
[tool.poetry.group.extras.dependencies]
# dependencies for extra features
# Main
## Pydantic
#pydantic = ">=2" # Data validation and settings management
#pydantic-settings = ">=2" # Pydantic settings management
# git ops
#PyGithub = "*" # GitHub API client
#gitpython = "*" # Git repository interface
# api
#fastapi = "*" # High-performance API framework
#httpx = "*" # Async HTTP client
# cli
#click = "*" # CLI creation toolkit
#typer = "*" # Easy CLI building
# data, databases
pymongo = "*" # MongoDB client
#mongoengine = "*" # MongoDB ORM
#PyDrive = "*" # Google Drive API client
protobuf = "*" # Protocol buffers
#dropbox = "*" # Dropbox API client
# utils
#pytz = "*" # Timezone definitions
#retry = "*" # Retry decorator
#nltk = "*" # Natural language toolkit
#easydict = ">=1.10" # Easy access to dict keys - dotdict
pydub = ">=0.25" # Audio manipulation
#apscheduler = ">=3" # Scheduling library
pyperclip = "*" # Copying to clipboard
aiolimiter = ">=1.1" # Async rate limiting
deepl = ">=1.18" # DeepL API client
# LLM, GPT, AI
#tiktoken = ">=0.7" # Tokenization for OpenAI models
#openai = ">=1.45" # OpenAI API client
langchain = "^0.3.14" # Language model framework
langchain-openai = "^0.3.0" # OpenAI integration for LangChain
langchain-community = "*" # Community extensions for LangChain
langchain-anthropic = "^0.3.3" # Anthropic integration for LangChain
langchain-ollama = "^0.2.2"
langchain-google-genai = "^2.0.9"
langfuse = "*" # Language model analytics
#assemblyai = "*" # Speech-to-text API
#whisperx = { git = "https://github.com/m-bain/whisperX.git", branch = "main" } # Advanced Whisper model
# Misc
#ipykernel = "*" # IPython kernel
#ipywidgets = "*" # Interactive widgets for Jupyter
#joblib = "*" # Lightweight pipelining
#paramiko = "*" # SSH2 protocol library
#scp = "*" # Secure copy
#pymorphy2 = "*" # Morphological analyzer
[tool.poetry.group.test.dependencies]
pytest = ">=6"
pytest-mongodb = "*"
[tool.poetry.group.docs.dependencies]
#mkdocs = ">=1.6"
[tool.poetry.group.dev.dependencies]
# dev / research utils
jupyter = ">=1.0.0" # Interactive notebooks
#jupyter-nbextensions-configurator = "*"
#jupyter_contrib_nbextensions = "*"
black = ">=24.0.0" # Code formatter
pre-commit = ">=3.8.0" # Pre-commit hooks
tqdm = "*" # Progress bars
## data analysis, research
#pandas = ">=2.0.0" # Data manipulation and analysis
#seaborn = "*" # Statistical data visualization
#bokeh = "*" # Interactive visualizations
#matplotlib = "*" # Plotting library
#numpy = "*" # Numerical computing
# legacy. Todo: Sort out
#defaultenv = { git = "https://github.com/bobuk/defaultenv.git", branch ="master", optional = true }
#bmmb = { git = "https://github.com/calmmage/bot_me_maybe.git", branch ="main", optional = true }
#gpt_kit = { git = "https://github.com/calmmage/gpt_kit.git", branch = "main", optional = true }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Home" = "https://github.com/calmmage/calmlib"