Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
[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 = "[email protected]"}
]
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]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
include-package-data = true

[tool.setuptools.packages.find]
include = ['fastecdsa*']
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ 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',
'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'
Expand Down