Skip to content

Commit

Permalink
Merge pull request #67 from nschloe/remove-about
Browse files Browse the repository at this point in the history
Remove about
  • Loading branch information
nschloe authored Jul 6, 2021
2 parents 3703c1e + 632cbd0 commit 7a440c7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 14 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,11 @@ To run the termplotlib unit tests, check out this repository and type
pytest
```

### Similar projects

* [bashplotlib](https://github.com/glamp/bashplotlib)
* [asciichart](https://github.com/kroitor/asciichart)
* [plotext](https://github.com/piccolomo/plotext)

### License
This software is published under the [GPLv3 license](https://www.gnu.org/licenses/gpl-3.0.en.html).
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = termplotlib
version = 0.3.5
version = 0.3.6
author = Nico Schlömer
author_email = [email protected]
description = Python plotting for the command line
Expand Down Expand Up @@ -38,7 +38,6 @@ package_dir =
=src
packages = find:
install_requires =
importlib_metadata;python_version<"3.8"
numpy
python_requires = >=3.6

Expand Down
10 changes: 0 additions & 10 deletions src/termplotlib/__about__.py

This file was deleted.

2 changes: 0 additions & 2 deletions src/termplotlib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
from .__about__ import __version__
from .figure import Figure, figure
from .subplot import SubplotGrid, subplot_grid

__all__ = [
"__version__",
"Figure",
"figure",
"SubplotGrid",
Expand Down
1 change: 1 addition & 0 deletions src/termplotlib/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ def plot(
gnuplot_input = []

gnuplot_input.append(f"set term dumb mono {width},{height}")

# gnuplot_input.append("set tics nomirror")
gnuplot_input.append(f"set tics scale {ticks_scale}")

Expand Down

0 comments on commit 7a440c7

Please sign in to comment.