Skip to content

Commit

Permalink
Minor changes. Version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
davipatti committed May 30, 2018
1 parent 837c6fb commit 55f2263
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 10 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
eggcellent.egg-info
build
dist
*.pyc
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog

All notable changes to eggcellent will be documented in this file.

## 0.1.1 - 2018-05-30

Minor changes.

## 0.1.0 - 2018-05-30

### Added
- Egg shapes.

- Egg shapes.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ Make excellent egg shapes.

# Install

It can be installed from command - line using [pip](https: // pypi.python.org /
pypi / pip):
It can be installed from command - line using
[pip](https://pypi.org/project/pip/):

```bash
pip install eggcellent
```

# Usage

# Use a default egg:
## Use a default egg:

```python
from eggcellent import egg
Expand All @@ -23,7 +23,7 @@ plt.scatter([0, 1], [0, 1], marker=None, verts=egg, s=200)

![example1.png](eggs.png)

# Make your own egg
## Make your own egg

```python
from eggcellent import make_egg
Expand Down
2 changes: 1 addition & 1 deletion eggcellent/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import absolute_import as _
from .eggcellent import egg, make_egg

__version__ = "0.1.0"
__version__ = "0.1.1"

__all__ = ["__version__", "egg", "make_egg"]
Binary file removed eggcellent/__pycache__/__init__.cpython-36.pyc
Binary file not shown.
Binary file removed eggcellent/__pycache__/eggcellent.cpython-36.pyc
Binary file not shown.
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[metadata]
author = David Pattinson
author_email = [email protected]
author_email = [email protected]
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Programming Language :: Python
description = Egg shapes.
download_url = https://github.com/organisation/eggcellent/releases/latest
keywords = keyword0, keyword1, keyword2
download_url = https://github.com/davipatti/eggcellent/releases/latest
keywords = egg
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -18,7 +18,7 @@ platforms =
Linux
MacOS
Windows
url = https://github.com/organisation/eggcellent
url = https://github.com/davipatti/eggcellent
version = attr: eggcellent.__version__

[options]
Expand Down

0 comments on commit 55f2263

Please sign in to comment.