-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.26 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
[project]
name = "agentslack"
version = "1.0.4"
description = "A Python SDK for building multi-agent worlds that communicate through Slack."
authors = [
{ name="Veniamin Veselovsky", email="veniamin@princeton.edu" },
{ name="Benedikt Stroebl", email="stroebl@princeton.edu" },
]
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Communications :: Chat",
]
license = "MIT"
license-file = "LICENSE"
dependencies = [
"fastapi>=0.115.0",
"uvicorn>=0.34.0",
"slack-sdk>=3.34.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
"tqdm>=4.67.1",
]
[project.optional-dependencies]
demo = [
"litellm>=1.59.0",
"smolagents>=1.4.1",
]
[project.urls]
Homepage = "https://github.com/princeton-pli/agentslack"
Documentation = "https://github.com/princeton-pli/agentslack/blob/main/src/agentslack/README.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/agentslack"]
[tool.hatch.metadata]
allow-direct-references = true