-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 910 Bytes
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 910 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "agi.green"
version = "0.4.8"
description = "AGI.green Framework"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [
{ name = "Ken Seehart", email = "ken@agi.green" }
]
dependencies = [
"aiohttp",
"python-dotenv",
"openai>=1.54.0,<2.0.0",
"pyyaml>=6.0.2",
"redis",
"aiofiles~=24.1.0",
"aio_pika~=9.2.0",
"bcrypt",
"beanie>=2.0.0",
"aiosmtplib",
"markdown",
"ptvsd~=4.3.2",
"watchdog",
"tomli",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"black",
"isort",
]
[tool.setuptools]
packages = ["agi_green"]
include-package-data = true
[tool.setuptools.package-data]
agi_green = [
"CHANGELOG.md",
"LICENSE",
"CONTRIBUTING.md",
"frontend/dist/**/*"
]