Skip to content

Commit

Permalink
Update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ffalpha committed Sep 1, 2021
1 parent 41914f9 commit fd90d09
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
<div id="headline" align="center">
<h1>Entropy-Calucalator</h1>
<p>Conations a python package for various type of entropy calculations</p>

<a href="https://pypi.org/project/entropyshannon/">
<img src="https://badge.fury.io/py/entropyshannon.svg" alt="PyPI version"></img>
</a>
</div>


Expand Down
Binary file added dist/entropyshannon-0.0.2.tar.gz
Binary file not shown.
49 changes: 49 additions & 0 deletions entropyshannon.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
Metadata-Version: 2.1
Name: entropyshannon
Version: 0.0.2
Summary: A python package for various type of entropy calculations(Specially Shannon)
Home-page: https://github.com/ffalpha/Entropy-Calucalator
Author: Kalana Mihiranga
Author-email: [email protected]
License: MIT
Keywords: entropy,shannon,calculator
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE


<div id="headline" align="center">
<h1>Entropy-Calucalator</h1>
<p>Conations a python package for various type of entropy calculations</p>
</div>





### Requirements
- None
### Installation
```
pip install entropyshannon
```

### Basic example

```py
from entropyshannon import *

string_entropy=shannon_entropy("12311331")
print(string_entropy)


probability_list=[1/2,1/3,1/10,7/10]
print(shannon_entropy_probability_list(probability_list))


```





9 changes: 9 additions & 0 deletions entropyshannon.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
LICENSE
README.md
setup.cfg
setup.py
entropyshannon copy/__init__.py
entropyshannon.egg-info/PKG-INFO
entropyshannon.egg-info/SOURCES.txt
entropyshannon.egg-info/dependency_links.txt
entropyshannon.egg-info/top_level.txt
1 change: 1 addition & 0 deletions entropyshannon.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions entropyshannon.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
entropyshannon copy
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='entropyshannon',
version='0.0.1',
version='0.0.2',
description='A python package for various type of entropy calculations(Specially Shannon)',
long_description=open('README.md',encoding='UTF-8').read(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit fd90d09

Please sign in to comment.