-
Notifications
You must be signed in to change notification settings - Fork 84
/
pyproject.toml
43 lines (40 loc) · 1.16 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
40
41
42
43
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "google-genai"
version = "0.4.0"
description = "GenAI Python SDK"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.9"
authors = [
{ name = "Google LLC", email = "[email protected]" },
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"google-auth>=2.14.1, <3.0.0dev",
"pillow>=10.0.0, <12.0.0",
"pydantic>=2.0.0, <3.0.0dev",
"requests>=2.28.1, <3.0.0dev",
"websockets>=13.0, <15.0dev",
]
[project.urls]
Homepage = "https://github.com/googleapis/python-genai"
[tool.setuptools]
packages = [
"google",
"google.genai",
]