diff --git a/pyproject.toml b/pyproject.toml index 6680d37b1..e942094de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,19 @@ [project] name = "llamacpypy" version = "0.1.0" -description = "" +description = "Python bindings for llama.cpp" authors = [{name = "Emanuel Seemann", email = "github@emanuelseemann.ch"}] readme = "README.md" +license = { file = "LICENSE" } +classifiers = [ + "License :: OSI Approved :: MIT License", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: C++" +] +dependencies = [ + "pybind11 >= 2.10.4", +] [tool.poetry] name = "llamacpypy" @@ -30,4 +40,7 @@ wheel.expand-macos-universal-tags = true test-command = "pytest {project}/tests" test-extras = ["test"] test-skip = ["*universal2:arm64"] -build-verbosity = 1 \ No newline at end of file +build-verbosity = 1 + +[project.urls] +Homepage = "https://github.com/seemanne/llamacpypy" diff --git a/requirements.txt b/requirements.txt index e83a88957..5799464d6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,8 @@ +# +# This file is autogenerated by pip-compile with Python 3.9 +# by the following command: +# +# pip-compile pyproject.toml +# pybind11==2.10.4 + # via llamacpypy (pyproject.toml)