From f8f048056d998d97e72110888ceb761b25c1118c Mon Sep 17 00:00:00 2001 From: Priyanshu Sehgal <112475366+priyanshums@users.noreply.github.com> Date: Wed, 11 Jan 2023 13:21:16 +0530 Subject: [PATCH 1/5] Updated Python version for zilliqa-etl --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index df81c3a..5fd90ff 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def read(fname): 'Programming Language :: Python :: 3.7' ], keywords='Zilliqa', - python_requires='>=3.6.0,<=3.9.5', + python_requires='>=3.6.0,<=3.9.20', install_requires=[ 'blockchain-etl-common==1.6.1', 'click==7.0', From dfdd83e9825f87e63b5f51d1bc5b63403450d1c8 Mon Sep 17 00:00:00 2001 From: Priyanshu Sehgal <112475366+priyanshums@users.noreply.github.com> Date: Thu, 12 Jan 2023 09:59:28 +0530 Subject: [PATCH 2/5] Create pyproject.toml --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9ebf206 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,5 @@ +[build-system] +# These are the assumed default build requirements from pip: +# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support +requires = ["setuptools>=43.0.0", "wheel"] +build-backend = "setuptools.build_meta" From 204f78a5b74b7b44fc1ecaa34197205fa110c5aa Mon Sep 17 00:00:00 2001 From: Priyanshu Sehgal <112475366+priyanshums@users.noreply.github.com> Date: Thu, 12 Jan 2023 10:08:23 +0530 Subject: [PATCH 3/5] Update pyproject.toml --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 9ebf206..f451a02 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,3 +3,9 @@ # https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support requires = ["setuptools>=43.0.0", "wheel"] build-backend = "setuptools.build_meta" + +[tool.setuptools] +include-package-data = true + +[tool.setuptools.packages.find] +include = ['fastecdsa*'] From 727c8f190b21645878d486afef398cc218235c0c Mon Sep 17 00:00:00 2001 From: Priyanshu Sehgal <112475366+priyanshums@users.noreply.github.com> Date: Thu, 12 Jan 2023 10:10:20 +0530 Subject: [PATCH 4/5] Update pyproject.toml --- pyproject.toml | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f451a02..f664bff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,35 @@ +[project] +name = "fastecdsa" +version = "2.3.1" +description = "Fast elliptic curve digital signatures" +readme = "README.rst" +requires-python = ">=3.7" +license = {file = "LICENSE"} +authors = [ + {name = "Anton Kueltz", email = "kueltz.anton@gmail.com"} +] +keywords = ["elliptic", "curve", "cryptography", "ecdsa", "ecc"] +classifiers = [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Topic :: Security :: Cryptography", + "License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Operating System :: MacOS :: MacOS X", + "Operating System :: POSIX :: Linux" +] + +[project.urls] +repo = "https://github.com/AntonKueltz/fastecdsa" +docs = "https://fastecdsa.readthedocs.io" +pypi = "https://pypi.org/project/fastecdsa/" + [build-system] -# These are the assumed default build requirements from pip: -# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support -requires = ["setuptools>=43.0.0", "wheel"] +requires = ["setuptools>=61"] build-backend = "setuptools.build_meta" [tool.setuptools] From 76a29c25c8d2ec808e3ffa2741edd4094f619044 Mon Sep 17 00:00:00 2001 From: Nirmal AK <=> Date: Mon, 30 Jan 2023 22:50:53 +0530 Subject: [PATCH 5/5] Update requirements for jsonrpcclient --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 5fd90ff..67a4bd8 100644 --- a/setup.py +++ b/setup.py @@ -31,10 +31,10 @@ def read(fname): python_requires='>=3.6.0,<=3.9.20', install_requires=[ 'blockchain-etl-common==1.6.1', - 'click==7.0', + 'click>=7.0', 'python-dateutil==2.7.0', 'pyzil==1.5.22', - 'jsonrpcclient==3.3.6', + 'jsonrpcclient>=3.3.6', 'google-cloud==0.34.0', 'google-cloud-pubsub==2.5.0', 'timeout-decorator==0.5.0'