File size: 1,414 Bytes
e54fd17 6f40440 e54fd17 6f40440 e54fd17 6f40440 e54fd17 6f40440 |
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 44 45 |
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "llmpromptkit"
version = "0.1.0"
description = "A comprehensive LLM Prompt Management System"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MIT"}
keywords = ["llm", "prompt engineering", "nlp", "machine learning"]
authors = [
{name = "Biswanath Roul"}
]
maintainers = [
{name = "Biswanath Roul"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.20.0",
]
[project.urls]
"Homepage" = "https://github.com/biswanathroul/llmpromptkit"
"Bug Tracker" = "https://github.com/biswanathroul/llmpromptkit/issues"
"Documentation" = "https://github.com/biswanathroul/llmpromptkit/wiki"
"Source Code" = "https://github.com/biswanathroul/llmpromptkit"
[project.scripts]
llmpromptkit = "llmpromptkit.cli.commands:main"
[tool.setuptools]
packages = ["llmpromptkit", "llmpromptkit.core", "llmpromptkit.cli", "llmpromptkit.utils"] |