-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 901 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 901 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lambda-agent"
version = "0.1.3"
description = "Lambda - A minimal AI coding agent"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [
{name = "Ayush Ranjan"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Code Generators",
]
dependencies = [
"google-genai>=1.71.0",
"python-dotenv>=1.0.0",
"rich>=13.7.0",
]
[project.urls]
Homepage = "https://github.com/ayusrjn/lambda"
Repository = "https://github.com/ayusrjn/lambda.git"
[project.scripts]
lambda = "lambda_agent.main:main"
[tool.setuptools.packages.find]
include = ["lambda_agent*"]