-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (23 loc) · 866 Bytes
/
setup.py
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
import os
import uuid
from pip.req import parse_requirements
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
install_reqs = parse_requirements(os.path.join(here, 'requirements.txt'), session=uuid.uuid1())
reqs = [str(ir.req) for ir in install_reqs]
with open(os.path.join(here, 'README.md')) as fp:
long_description = fp.read()
setup(
name='merkle-proofs',
version='0.0.6',
description='library for generating and validating Merkle Trees and receipts, compliant with chainpoint v2',
author='MIT Media Lab Digital Certificates',
tests_require=['tox'],
url='https://github.com/blockchain-certificates/merkle-proofs',
license='MIT',
author_email='[email protected]',
long_description=long_description,
packages=['merkleproof'],
include_package_data=True,
install_requires=reqs
)