-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 1.18 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gemini-cli-headless"
version = "5.0.6"
description = "A resilient, zero-dependency Python wrapper for the official Google Gemini Node.js CLI."
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name="jarek108" }
]
keywords = ["gemini", "google-ai", "cli", "headless", "wrapper", "llm"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
]
[project.urls]
Homepage = "https://github.com/jarek108/gemini-cli-headless"
Repository = "https://github.com/jarek108/gemini-cli-headless"
Issues = "https://github.com/jarek108/gemini-cli-headless/issues"
Documentation = "https://github.com/jarek108/gemini-cli-headless/tree/main/docs"
[tool.pytest.ini_options]
addopts = "-ra --tb=short"
cache_dir = "tests/.pytest_cache"
[tool.setuptools]
py-modules = ["gemini_cli_headless"]