forked from hkust-itsc/cert-verifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (22 loc) · 701 Bytes
/
setup.py
File metadata and controls
28 lines (22 loc) · 701 Bytes
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 setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open('requirements.txt') as f:
install_reqs = f.readlines()
reqs = [str(ir) for ir in install_reqs]
with open(os.path.join(here, 'README.md')) as fp:
long_description = fp.read()
setup(
name='cert-verifier',
version='2.0.14',
description='Verifies blockchain certificates',
author='Blockcerts',
tests_require=['tox'],
url='https://github.com/blockchain-certificates/cert-verifier',
license='MIT',
author_email='info@blockcerts.org',
long_description=long_description,
packages=find_packages(),
install_requires=reqs
)