-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (44 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
55 lines (44 loc) · 1.53 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "solace-ai-connector-rest"
dynamic = ["version"]
authors = [
{ name="Edward Funnekotter", email="edward.funnekotter@solace.com" },
{ name="Greg Meldrum", email="greg.meldrum@solace.com" },
{ name="Cyrus Mobini", email="cyrus.mobini@solace.com" },
]
description = "rest plugin for the Solace AI Connector - this provides an input and output component to talk to rest interface"
readme = "README.md"
requires-python = ">=3.10.16"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"flask>=3.0.3",
"requests_oauthlib==2.0.0",
"solace_ai_connector>=0.1.3",
"ratelimit~=2.2.1",
"Flask-Cors~=5.0.0"
]
[project.urls]
homepage = "https://github.com/SolaceLabs/solace-ai-connector-rest"
repository = "https://github.com/SolaceLabs/solace-ai-connector-rest"
documentation = "https://github.com/SolaceLabs/solace-ai-rest/blob/main/docs/components/index.md"
[tool.hatch.build.targets.wheel]
packages = ["src/solace_ai_connector_rest"]
[tool.hatch.version]
path = "src/solace_ai_connector_rest/__init__.py"
[tool.ruff]
lint.select = ["E4", "E7", "E9", "F"]
lint.ignore = ["F401", "E731"]
[tool.hatch.envs.hatch-test]
installer = "pip"
[[tool.hatch.envs.hatch-test.matrix]]
python = ["3.10", "3.13"]