-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce
python-sdk
for code2prompt (#47)
- Loading branch information
Showing
13 changed files
with
864 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[build-system] | ||
requires = ["maturin>=1.4,<2.0"] | ||
build-backend = "maturin" | ||
|
||
[project] | ||
name = "code2prompt" | ||
version = "2.0.0" | ||
description = "Python bindings for code2prompt - A tool to generate LLM prompts from codebases" | ||
authors = [ | ||
{name = "Mufeed VH", email = "[email protected]"}, | ||
] | ||
readme = "README.md" | ||
requires-python = ">=3.12" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Rust", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/mufeedvh/code2prompt" | ||
Documentation = "https://github.com/mufeedvh/code2prompt" | ||
Repository = "https://github.com/mufeedvh/code2prompt" | ||
|
||
[tool.maturin] | ||
python-source = "python-sdk" | ||
features = ["pyo3/extension-module"] | ||
module-name = "code2prompt.code2prompt" |
Oops, something went wrong.