-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
50 lines (46 loc) · 1.24 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
50
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "microagent"
version = "0.1.0"
description = "A microagent framework for AI interactions"
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
keywords = ["AI", "agent", "microagent"]
authors = [
{ name = "Chris Latimer", email = "chris.latimer@vectorize.io" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"openai>=1.0.0",
"anthropic>=0.3.0",
"google-generativeai>=0.1.0",
"groq>=0.4.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"black>=22.0",
"isort>=5.0",
"mypy>=0.900",
"vcrpy>=4.1.1",
]
[project.urls]
Homepage = "https://github.com/yourusername/microagent"
Repository = "https://github.com/yourusername/microagent.git"
Issues = "https://github.com/yourusername/microagent/issues"
[tool.hatch.build.targets.wheel]
packages = ["microagent"]