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
a1db600
commit 892029a
Showing
2 changed files
with
5 additions
and
2 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,3 @@ | ||
from statistics_reader.sender import Sender | ||
from statistics_reader.block import Block | ||
from statistics_reader.blockchain_adapter import BlockchainAdapter |
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
from setuptools import setup | ||
|
||
setup(name='blockchain_statistics_readout', | ||
version='0.3', | ||
version='0.3.1', | ||
description='Read out statistics from a blockchain', | ||
author='Anton von Weltzien', | ||
license='MIT', | ||
packages=['statistics_reader'], | ||
packages=['blockchain_statistics_readout'], | ||
url='https://github.com/BPChain/blockchain_statistics_readout.git', | ||
install_requires=['websocket-client==0.47.0', 'psutil==5.4.5'], | ||
zip_safe=False) |