|
1 | 1 | [project] |
2 | 2 | name = "structured-output-cookbook" |
3 | | -version = "0.1.0" |
4 | | -description = "LLM-powered structured output extraction with predefined and custom schemas" |
| 3 | +dynamic = ["version"] |
| 4 | +description = "Extract structured data from text using LLMs with ready-to-use templates" |
5 | 5 | readme = "README.md" |
6 | | -requires-python = ">=3.13" |
| 6 | +requires-python = ">=3.10" |
7 | 7 | authors = [ |
8 | 8 | { name = "Saverio Mazza", email = "[email protected]" } |
9 | 9 | ] |
| 10 | +maintainers = [ |
| 11 | + { name = "Saverio Mazza", email = "[email protected]" } |
| 12 | +] |
10 | 13 | license = { text = "MIT" } |
11 | | -keywords = ["llm", "structured-output", "extraction", "ai", "openai"] |
| 14 | +keywords = [ |
| 15 | + "openai", "llm", "data-extraction", "text-processing", |
| 16 | + "structured-data", "templates", "pydantic", "json-extraction", |
| 17 | + "nlp", "automation", "api-wrapper" |
| 18 | +] |
12 | 19 | classifiers = [ |
13 | 20 | "Development Status :: 4 - Beta", |
14 | 21 | "Intended Audience :: Developers", |
| 22 | + "Intended Audience :: Data Scientists", |
15 | 23 | "License :: OSI Approved :: MIT License", |
| 24 | + "Operating System :: OS Independent", |
16 | 25 | "Programming Language :: Python :: 3", |
| 26 | + "Programming Language :: Python :: 3.10", |
| 27 | + "Programming Language :: Python :: 3.11", |
| 28 | + "Programming Language :: Python :: 3.12", |
17 | 29 | "Programming Language :: Python :: 3.13", |
18 | 30 | "Topic :: Software Development :: Libraries :: Python Modules", |
| 31 | + "Topic :: Text Processing :: Linguistic", |
19 | 32 | "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 33 | + "Topic :: Office/Business", |
| 34 | + "Topic :: Utilities", |
20 | 35 | ] |
21 | 36 |
|
22 | 37 | dependencies = [ |
@@ -51,12 +66,21 @@ structured-output = "structured_output_cookbook.cli:main" |
51 | 66 | [project.urls] |
52 | 67 | Homepage = "https://github.com/mazzasaverio/structured-output-cookbook" |
53 | 68 | Repository = "https://github.com/mazzasaverio/structured-output-cookbook" |
54 | | -Issues = "https://github.com/mazzasaverio/structured-output-cookbook/issues" |
| 69 | +Documentation = "https://github.com/mazzasaverio/structured-output-cookbook#readme" |
| 70 | +"Bug Tracker" = "https://github.com/mazzasaverio/structured-output-cookbook/issues" |
| 71 | +Changelog = "https://github.com/mazzasaverio/structured-output-cookbook/blob/main/CHANGELOG.md" |
| 72 | +"Source Code" = "https://github.com/mazzasaverio/structured-output-cookbook" |
55 | 73 |
|
56 | 74 | [build-system] |
57 | 75 | requires = ["hatchling"] |
58 | 76 | build-backend = "hatchling.build" |
59 | 77 |
|
| 78 | +[tool.hatch.version] |
| 79 | +path = "src/structured_output_cookbook/__init__.py" |
| 80 | + |
| 81 | +[tool.hatch.build.targets.wheel] |
| 82 | +packages = ["src/structured_output_cookbook"] |
| 83 | + |
60 | 84 | [tool.uv] |
61 | 85 | dev-dependencies = [ |
62 | 86 | "pytest>=8.0.0", |
|
0 commit comments