Skip to content

Commit

Permalink
Update badge, set initial version.
Browse files Browse the repository at this point in the history
  • Loading branch information
clamdad committed Sep 20, 2021
1 parent 4a12e3b commit f87e8a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Welcome to Chainfix
![chainfix](https://github.com/pydefi/chainfix/raw/main/docs/logo/chainfix_logo.png)

![ci](https://github.com/pydefi/chainfix/actions/workflows/tox.yml/badge.svg)

Chainfix provides a way to represent numbers and perform simple math operations using fixed-point data types.

Chainfix supports binary fixed-point (base-2), decimal fixed-point (base-10)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name=chainfix
version = attr: chainfix.__version__
author=PyDefi Development Team
author_email[email protected]
author_email=clamdad+pydefi@protonmail.com
description= Fixed-point data types for signal processing and blockchain applications
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
2 changes: 1 addition & 1 deletion src/chainfix/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import TypeVar
from typing import Union

__version__ = '0.0.1'
__version__ = '0.1.0'

__all__ = ['Fixd', 'Ufixd', 'Fixb', 'Ufixb']

Expand Down

0 comments on commit f87e8a9

Please sign in to comment.