diff --git a/Makefile b/Makefile index d23ab7a..cc175d8 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/README.md b/README.md index 0ea3fe3..63398ee 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ print( indentation=6 ) ) - +``` Fibonacci Sequence Value @@ -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 @@ -85,6 +85,7 @@ print( indentation=6 ) ) +``` Random Values 96.0┤ ╭╮ ╭──╭╮──╮ ╭──╮ ╭╮ ╭╮ ╭╮ ╭───────╮ ╭─╮ @@ -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/ diff --git a/asciiplot/version.py b/asciiplot/version.py index c12f34c..34da6b8 100644 --- a/asciiplot/version.py +++ b/asciiplot/version.py @@ -1 +1 @@ -__version__ = '0.1.1' \ No newline at end of file +__version__ = '0.1.2' \ No newline at end of file diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 224a779..0000000 --- a/setup.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[metadata] -description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index b1ccdf6..200a820 100644 --- a/setup.py +++ b/setup.py @@ -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", @@ -30,8 +33,7 @@ ], author='w2sv', author_email='zangenbergjanek@googlemail.com', - platforms=['Linux', 'Windows', 'MacOS'], - description='Platform-agnostic, highly customizable sequence plotting in console, offering high suitability for GUIs' + platforms=['Linux', 'Windows', 'MacOS'] )