-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (35 loc) · 954 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "matterbot"
dynamic = ["description", "version"]
requires-python = ">=3.10"
authors = [
{ name = "Ian Neal", email = "[email protected]" },
]
dependencies = [
"fastapi >=0.109.2,<1",
"pydantic >=2.1,<3",
"pydantic-extra-types >=2.0",
"uplink >=0.9.7,<1",
]
classifiers = [
"Development Status :: 1 - Planning",
"Framework :: FastAPI",
"Framework :: Pydantic",
"Framework :: Pydantic :: 2",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Communications",
"Topic :: Communications :: Chat",
"Typing :: Typed"
]
[project.optional-dependencies]
dev = [
"ipython",
]