-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.03 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.03 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
import os
from setuptools import setup
with open(os.path.abspath("./README.md"), "r") as fh:
long_description = fh.read()
setup(
name="indy_bls",
version="0.1.0",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hyperledger-indy/indy-bls-wrapper-python",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
description="Python wrapper for the Indy BLS signatures implementation",
license="Apache-2.0",
author="Andrew Whitehead, Berend Sliedrecht, Stephen Curran",
author_email="cywolf@gmail.com, berend@animo.id, swcurran@cloudcompass.ca",
packages=["indy_bls"],
include_package_data=True,
package_data={
"": [
"indy_blssignatures.dll",
"libindy_blssignatures.dylib",
"libindy_blssignatures.so",
]
},
python_requires=">=3.6.3",
tests_require=["pytest"],
)