diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e2cd91e --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +eggcellent.egg-info +build +dist +*.pyc diff --git a/CHANGELOG.md b/CHANGELOG.md index ee1319b..b2c504a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 5fb7e5c..e972515 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ 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 @@ -13,7 +13,7 @@ pip install eggcellent # Usage -# Use a default egg: +## Use a default egg: ```python from eggcellent import egg @@ -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 diff --git a/eggcellent/__init__.py b/eggcellent/__init__.py index 5bb5ed9..c76c6a6 100644 --- a/eggcellent/__init__.py +++ b/eggcellent/__init__.py @@ -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"] diff --git a/eggcellent/__pycache__/__init__.cpython-36.pyc b/eggcellent/__pycache__/__init__.cpython-36.pyc deleted file mode 100644 index 20e7e42..0000000 Binary files a/eggcellent/__pycache__/__init__.cpython-36.pyc and /dev/null differ diff --git a/eggcellent/__pycache__/eggcellent.cpython-36.pyc b/eggcellent/__pycache__/eggcellent.cpython-36.pyc deleted file mode 100644 index a37b1e1..0000000 Binary files a/eggcellent/__pycache__/eggcellent.cpython-36.pyc and /dev/null differ diff --git a/setup.cfg b/setup.cfg index 7991723..dd42250 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,13 +1,13 @@ [metadata] author = David Pattinson -author_email = djp65@cam.ac.uk +author_email = davipatti10@gmail.com 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 @@ -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]