forked from SolaceLabs/solace-ai-connector-slack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (34 loc) · 1.14 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "solace_ai_connector_slack"
dynamic = ["version"]
authors = [
{ name="Edward Funnekotter", email="[email protected]" },
]
description = "Slack plugin for the Solace AI Connector - this provides an input and output component to talk to Slack"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"PyYAML>=6.0.1",
"slack_bolt>=1.18.1",
"solace_ai_connector>=0.1.3",
"prettytable>=3.10.0",
]
[project.urls]
homepage = "https://github.com/SolaceLabs/solace-ai-connector-slack"
repository = "https://github.com/SolaceLabs/solace-ai-connector-slack"
documentation = "https://github.com/SolaceLabs/solace-ai-connector-slack/blob/main/docs/index.md"
[tool.hatch.build.targets.wheel]
packages = ["src/solace_ai_connector_slack"]
[tool.hatch.version]
path = "src/solace_ai_connector_slack/components/__init__.py"
[tool.ruff]
lint.select = ["E4", "E7", "E9", "F"]
lint.ignore = ["F401", "E731"]