From 0839686e2b14e64e2a699f9b156217ec68a78424 Mon Sep 17 00:00:00 2001 From: Arushi Sharma Date: Fri, 11 Oct 2024 17:06:09 -0400 Subject: [PATCH 1/2] add build backend and metadata --- pyproject.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..34f91b3 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + + +[project] +name = "resilientdb-sdk" +version = "0.0.1" +authors = [ + { name="Arindaam Roy", email="alpharoy14@gmail.com" }, +] +description = "Python SDK for Resilient DB; creates and transfer UTXO like assets" +readme = "README.md" +requires-python = ">=3.10" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + +[project.urls] +Homepage = "https://github.com/apache/incubator-resilientdb-python-sdk" +Issues = "https://github.com/apache/incubator-resilientdb-python-sdk/issues" From 24d003c6d645d35f1075640153af17c17641dbe2 Mon Sep 17 00:00:00 2001 From: Arushi Sharma Date: Fri, 11 Oct 2024 17:07:54 -0400 Subject: [PATCH 2/2] update license --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 34f91b3..2e1b646 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ readme = "README.md" requires-python = ">=3.10" classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", + "License :: OSI Approved :: Apache License", "Operating System :: OS Independent", ]