-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
58 lines (48 loc) · 1.55 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "solace_ai_connector"
dynamic = ["version"]
authors = [
{ name="Edward Funnekotter", email="[email protected]" },
]
description = "Solace AI Connector - make it easy to connect Solace PubSub+ Event Brokers to AI/ML frameworks"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"boto3~=1.34.122",
"langchain-core~=0.3.0",
"langchain~=0.3.0",
"PyYAML~=6.0.1",
"Requests~=2.32.3",
"solace_pubsubplus>=1.8.0",
"litellm~=1.51.3",
"Flask~=3.0.3",
"Flask-SocketIO~=5.4.1",
"build~=1.2.2.post1",
]
[project.urls]
homepage = "https://github.com/SolaceLabs/solace-ai-connector"
repository = "https://github.com/SolaceLabs/solace-ai-connector"
documentation = "https://github.com/SolaceLabs/solace-ai-connector/blob/main/docs/index.md"
[project.scripts]
solace-ai-connector = "solace_ai_connector.main:main"
solace-ai-connector-gen-docs = "solace_ai_connector.tools.gen_component_docs:main"
[tool.hatch.envs.hatch-test]
installer = "pip"
# # Specify minimum and maximum Python versions to test
[[tool.hatch.envs.hatch-test.matrix]]
python = ["3.10", "3.12"]
[tool.hatch.build.targets.wheel]
packages = ["src/solace_ai_connector"]
[tool.hatch.version]
path = "src/solace_ai_connector/__init__.py"
[tool.ruff]
lint.select = ["E4", "E7", "E9", "F"]
lint.ignore = ["F401", "E731"]