Skip to content

Commit

Permalink
0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
w2sv committed May 2, 2022
1 parent efb6307 commit bdadd30
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,6 @@ wheel:
python setup.py sdist bdist_wheel --dist-dir ./dist

upload: wheel
pip install certifi
python -m twine check dist/*
python setup.py sdist bdist_wheel upload
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ print(
indentation=6
)
)

```

Fibonacci Sequence
Value
Expand All @@ -65,7 +65,7 @@ print(
2┤ ╭─────────╯
1┼───────┬─────╯─┬───────┬───────┬───────┬───────┬───────┬ Iteration
1 2 3 4 5 6 7 8
```

```python
import numpy as np
from asciiplot import asciiize
Expand All @@ -85,6 +85,7 @@ print(
indentation=6
)
)
```

Random Values
96.0┤ ╭╮ ╭──╭╮──╮ ╭──╮ ╭╮ ╭╮ ╭╮ ╭───────╮ ╭─╮
Expand All @@ -98,7 +99,6 @@ print(
-78.2┤ ╰──╯ │╭╯││ ╰╯ │ ╭─╯ ╰╮ ╭─╯ ╰╮│ │╭╯
-100.0┼──┬──┬──┬──┬──┬──┬──├╯─├╯─┬──┬──┬──├─╯┬──┬──┬──├─╯┬──┬──┬──┬──┬──├╯─┬──┬──┬──├╯─┬──┬──┬
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
```

### References
Core sequence asciiization algorithm adopted from https://github.com/kroitor/asciichart/blob/master/asciichartpy/
Expand Down
2 changes: 1 addition & 1 deletion asciiplot/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.1'
__version__ = '0.1.2'
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()


setup(
name='asciiplot',
packages=find_packages(exclude=(["tests"])),
version=__version__,
license='MIT',
description='Platform-agnostic, highly customizable sequence plotting in console, offering high suitability for '
'GUIs',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
keywords=['plotting', 'terminal', 'console', 'ascii', 'gui', 'data', 'visualization', 'statistics', 'sequences'],
classifiers=[
"Programming Language :: Python :: 3",
Expand All @@ -30,8 +33,7 @@
],
author='w2sv',
author_email='[email protected]',
platforms=['Linux', 'Windows', 'MacOS'],
description='Platform-agnostic, highly customizable sequence plotting in console, offering high suitability for GUIs'
platforms=['Linux', 'Windows', 'MacOS']
)


Expand Down

0 comments on commit bdadd30

Please sign in to comment.