Skip to content
This repository has been archived by the owner on Sep 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #5 from zifter/codecheck
Browse files Browse the repository at this point in the history
Prepare for first release
  • Loading branch information
zifter committed Apr 22, 2019
2 parents ad884b8 + 66a10a3 commit 708b8a8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Expand Up @@ -3,6 +3,16 @@ Convert from one numeric system to other in python.
Supports following:
* roman numerals

# Example of usage
```python
>>> import numeral_system
>>> numeral_system.roman.encode(7)
'VII'
>>> numeral_system.roman.decode('XXII')
22
>>>
```

[![Release](https://img.shields.io/github/release/zifter/numeral-system-py.svg)][releases-url]
[![Code Coverage](https://codecov.io/gh/zifter/numeral-system-py/branch/master/graph/badge.svg)][codecov-url]
[![Build status Appveyor](https://ci.appveyor.com/api/projects/status/github/zifter/numeral-system-py?branch=master&svg=true)][appveyor-url]
Expand Down
10 changes: 10 additions & 0 deletions numeral_system/__init__.py
Expand Up @@ -2,3 +2,13 @@
Package which contains function for converting between different number system
"""
__version__ = '0.1.0'


from . import exceptions
from . import roman


__all__ = [
'exceptions',
'roman',
]
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -8,6 +8,7 @@ author-email = zifter.ai@gmail.com
home-page = https://github.com/zifter/numeral-system-py
description = attr: numeral_system.__doc__
long-description = file: README.md
long_description_content_type = text/markdown
license = MIT
license-file = LICENSE
platform = any
Expand Down

0 comments on commit 708b8a8

Please sign in to comment.