Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Add pip setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton von Weltzien committed May 24, 2018
1 parent 89d0581 commit 03fe0e7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
11 changes: 11 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from setuptools import setup

setup(name='blockchain_statistics_readout',
version='0.1',
description='Read out statistics from a blockchain',
author='Anton von Weltzien',
license='MIT',
packages=['statistics_reader'],
url='https://github.com/BPChain/blockchain_statistics_readout.git',
install_requires=['websocket-client==0.47.0', 'psutil==5.4.5'],
zip_safe=False)
2 changes: 2 additions & 0 deletions statistics_reader/blockchain_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ def host_id(self):
def new_blocks_and_previous(self) -> Tuple[List[Block], Block]:
raise NotImplementedError()



0 comments on commit 03fe0e7

Please # to comment.