-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (53 loc) · 2.08 KB
/
setup.py
File metadata and controls
53 lines (53 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
setup(
name="reclaimprotocol-python-sdk",
version="2.0.0",
package_dir={"": "src"},
packages=find_packages(where="src", exclude=["tests*"]),
include_package_data=True,
install_requires=[
"web3>=6.0.0",
"canonicaljson>=1.0.0",
"eth-account>=0.8.0",
"typing-extensions>=4.5.0",
"aiohttp>=3.8.0",
"python-dotenv>=1.0.0",
"requests>=2.32.3",
"httpx>=0.24.0",
"safe-pysha3>=1.0.2",
"json-canonical>=2.0.0",
],
python_requires=">=3.7",
author="Reclaim Protocol",
author_email="sajjadhaider21990@gmail.com",
description="Official Python SDK for the Reclaim Protocol — generate and verify zk-attested HTTPS proofs.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/reclaimprotocol/reclaim-python-sdk",
project_urls={
"Documentation": "https://docs.reclaimprotocol.org/",
"Source": "https://github.com/reclaimprotocol/reclaim-python-sdk",
"Bug Tracker": "https://github.com/reclaimprotocol/reclaim-python-sdk/issues",
"Developer Portal": "https://dev.reclaimprotocol.org/",
},
keywords=["reclaim", "reclaim-protocol", "zk", "zero-knowledge", "attestation", "proof", "verification", "web3"],
classifiers=[
"Programming Language :: Python :: 3",
"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 :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
],
setup_requires=[
"wheel",
"setuptools>=42",
],
)