-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 741 Bytes
/
setup.py
File metadata and controls
26 lines (21 loc) · 741 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
import os
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-viewer',
version='2.0.1',
url='https://github.com/blockchain-certificates/cert-viewer',
license='MIT',
author='Blockcerts',
author_email='[email protected]',
description='A web app for viewing and validating blockchain certificates on the Bitcoin blockchain',
long_description=long_description,
packages=find_packages(),
include_package_data=True,
install_requires=reqs
)