|
[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"] |