-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
36 lines (31 loc) · 917 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "jemma"
version = "0.1.4207"
description = "jemma & her ai agents that build software"
authors = [
{ name = "tolitius" },
]
readme = {file = "README.md", content-type = "text/markdown"}
keywords = ["ai", "agents", "llm", "code generation"]
dependencies = [
"python-dotenv==1.0.1",
"anthropic==0.21.3",
"openai==1.14.3",
"ollama==0.1.8",
"replicate==0.25.1",
"colalamo==0.1.2106",
"pyreadline3==3.4.1; os_name == 'nt'"
]
[project.scripts]
jemma = "jemma.huddle:main"
[project.urls]
Homepage = "https://github.com/tolitius/jemma"
Documentation = "https://github.com/tolitius/jemma?tab=readme-ov-file#-jemma"
Repository = "https://github.com/tolitius/jemma"
Issues = "https://github.com/tolitius/jemma/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["jemma*"]