-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.01 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
[build-system]
requires = ["setuptools>=69", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "gemini-webapi"
authors = [
{name = "UZQueen"},
]
description = "✨ An elegant async Python wrapper for Google Gemini web app"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["API", "async", "Gemini", "Bard", "Google", "Generative AI", "LLM"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
dependencies = [
"httpx~=0.28.0",
"pydantic~=2.10.2",
"loguru~=0.7.2",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/HanaokaYuzu/Gemini-API"
Issues = "https://github.com/HanaokaYuzu/Gemini-API/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["gemini_webapi"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"