Skip to content

Commit

Permalink
Changes to distutils setup for 0.1.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdbloice committed Mar 24, 2017
1 parent e146f7f commit 8759bc7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Augmentor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
__email__ = 'marcus.bloice@medunigraz.at'
__version__ = '0.1.1'

__all__ = ['Pipeline']
__all__ = ['Pipeline']
4 changes: 4 additions & 0 deletions DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Augmentor
=========

An image augmentation library for machine learning.
2 changes: 0 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
include README.md
include LICENSE.md

recursive-include Augmentor *.py
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from setuptools import setup, find_packages
from setuptools import setup

setup(
name='Augmentor',
packages=find_packages(),
packages=['Augmentor'],
version='0.1.1', # PEP440 says I need 0.1.0 or similar. Change this.
description='Image augmentation library for Machine Learning',
long_description='Image augmentation library for Machine Learning',
Expand Down

0 comments on commit 8759bc7

Please sign in to comment.