This repository has been archived by the owner on Jul 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Anton von Weltzien
committed
May 24, 2018
1 parent
89d0581
commit 03fe0e7
Showing
2 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,5 @@ def host_id(self): | |
def new_blocks_and_previous(self) -> Tuple[List[Block], Block]: | ||
raise NotImplementedError() | ||
|
||
|
||
|