-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (38 loc) · 1.04 KB
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
[project]
name = "nanoPyCodeAgent"
dynamic = ["version"]
description = "A nano code agent built from scratch in pure Python."
readme = "README.md"
requires-python = ">=3.13"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "minixalpha" }]
keywords = ["agent", "llm", "code-agent", "ai"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
]
dependencies = [
"anthropic>=0.112.0",
"httpx>=0.25.0",
]
[project.urls]
Homepage = "https://github.com/minixalpha/nanoPyCodeAgent"
Repository = "https://github.com/minixalpha/nanoPyCodeAgent"
Issues = "https://github.com/minixalpha/nanoPyCodeAgent/issues"
[project.scripts]
nanoPyCodeAgent = "nanopycodeagent:main"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/nanopycodeagent"]
[dependency-groups]
dev = [
"pytest>=9.1.1",
]
[tool.pytest.ini_options]
testpaths = ["tests"]