-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (56 loc) · 1.4 KB
/
setup.py
File metadata and controls
58 lines (56 loc) · 1.4 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
54
55
56
57
58
from setuptools import setup, find_packages
test_requires = [
'requests_mock'
"pytest",
"pyroaring",
"didkit"
]
setup(
name="pyvckit",
version="0.0.18",
packages=['pyvckit'],
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
},
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://farga.pangea.org/ereuse/pyvckit",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
)