-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 981 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 981 Bytes
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
[project]
name = "function-schema"
version = "0.4.7"
requires-python = ">= 3.9"
description = "A small utility to generate JSON schemas for python functions."
readme = "README.md"
license = {text = "MIT License"}
authors = [
{name = "Changkyun Kim", email = "comfuture@gmail.com"}
]
maintainers = [
{name = "Changkyun Kim", email = "comfuture@gmail.com"}
]
keywords = ["json-schema", "function", "documentation", "openai", "utility"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"typing-extensions>=4.12.2; python_version<'3.11'"
]
[project.urls]
Homepage = "https://github.com/comfuture/function-schema"
Repository = "https://github.com/comfuture/function-schema"
[project.scripts]
function_schema = "function_schema.cli:main"
[build-system]
requires = ["flit_core >=3.9,<4"]
build-backend = "flit_core.buildapi"
[tool.uv]
dev-dependencies = [
"pytest>=8.3.2",
"typing-extensions>=4.12.2",
]