pyvckit/setup.py

60 lines
1.4 KiB
Python
Raw Permalink Normal View History

2024-05-28 08:54:10 +00:00
from setuptools import setup, find_packages
test_requires = [
'requests_mock'
"pytest",
"pyroaring",
"didkit"
]
setup(
name="pyvckit",
2024-06-06 15:24:39 +00:00
version="0.0.9",
2024-05-31 18:07:03 +00:00
packages=['pyvckit'],
2024-05-28 08:54:10 +00:00
install_requires=[
"jsonref",
"PyLD",
"Requests",
"jsonschema[format]",
"jsonref",
"asn1crypto",
"certifi",
"cffi",
"cryptography",
"fonttools",
"idna",
"jsonwebtoken",
"jwcrypto",
"oscrypto",
"pycparser",
"pyedid",
"pyHanko[opentype]",
"pyhanko-certvalidator",
"pyOpenSSL",
"pypng",
"PyYAML",
"qrcode",
"reportlab",
"Pillow",
"multiformats",
"PyNaCl",
"py-multicodec",
],
extras_require={
'test': test_requires
2024-05-28 08:57:32 +00:00
},
2024-05-28 08:54:10 +00:00
author="eReuse.org team",
author_email="cayo@puigdefabregas.eu",
description="signature and validation of verifiable credential and verifiable presentation",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://gitea.pangea.org/ereuse/pyvckit",
classifiers=[
"Programming Language :: Python :: 3",
2024-05-31 08:38:02 +00:00
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
2024-05-28 08:54:10 +00:00
"Operating System :: OS Independent",
],
python_requires='>=3.9',
)