|
| 1 | +# Copyright 2025 Google LLC |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | +# |
| 15 | +# SPDX-License-Identifier: Apache-2.0 |
| 16 | + |
| 17 | +[project] |
| 18 | +authors = [{ name = "Google" }] |
| 19 | +classifiers = [ |
| 20 | + "Development Status :: 3 - Alpha", |
| 21 | + "Environment :: Console", |
| 22 | + "Environment :: Web Environment", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "Operating System :: OS Independent", |
| 25 | + "License :: OSI Approved :: Apache Software License", |
| 26 | + "Programming Language :: Python", |
| 27 | + "Programming Language :: Python :: 3 :: Only", |
| 28 | + "Programming Language :: Python :: 3.10", |
| 29 | + "Programming Language :: Python :: 3.11", |
| 30 | + "Programming Language :: Python :: 3.12", |
| 31 | + "Programming Language :: Python :: 3.13", |
| 32 | + "Programming Language :: Python :: 3.14", |
| 33 | + "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 34 | + "Topic :: Software Development :: Libraries", |
| 35 | +] |
| 36 | +dependencies = ["genkit", "structlog>=25.2.0", "genkit-plugin-google-genai"] |
| 37 | +description = "Genkit prompt demo" |
| 38 | +license = { text = "Apache-2.0" } |
| 39 | +name = "prompt-demo" |
| 40 | +requires-python = ">=3.10" |
| 41 | +version = "0.0.1" |
| 42 | + |
| 43 | +[build-system] |
| 44 | +build-backend = "hatchling.build" |
| 45 | +requires = ["hatchling"] |
| 46 | + |
| 47 | +[tool.hatch.build.targets.wheel] |
| 48 | +packages = ["src"] |
| 49 | + |
| 50 | +[tool.hatch.metadata] |
| 51 | +allow-direct-references = true |
| 52 | + |
| 53 | +[tool.uv.sources] |
| 54 | +genkit = { workspace = true } |
| 55 | +genkit-plugin-google-genai = { workspace = true } |
0 commit comments