Metadata-Version: 2.1
Name: directplot
Version: 0.0.3
Summary: Educational library to directly plot single data points
Home-page: https://github.com/GeorgBraun/python-directplot
Author: GeorgBraun
Author-email: georg.braun@hm.edu
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/GeorgBraun/python-directplot/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# python-directplot

Educational library to directly plot single data points.

## Description

... to be added ...

## API

... to be added ...

## Development

### Build pypi package

Tools to build under Windows:

```
python -m pip install --upgrade build
python -m pip install --upgrade twine
```

Tools to build under Linux/MacOS:

```
python3 -m pip install --upgrade build
python3 -m pip install --upgrade twine
```


Build package:

```
python -m build
```

Upload package to pypi:

```
twine upload dist/*
```


