Skip to content

Commit

Permalink
Clean up setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Hoffman committed Dec 4, 2014
1 parent dcd7c8e commit 619426a
Showing 1 changed file with 11 additions and 17 deletions.
28 changes: 11 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
NAME = 'mwhutils'
VERSION = '0.0.1'
AUTHOR = 'Matthew W. Hoffman'
AUTHOR_EMAIL = 'mwh30@cam.ac.uk'
URL = 'http://github.com/mwhoffman/mwhutils'
DESCRIPTION = 'A python library of various helper methods'

"""
Setup script for mwhutils.
"""

from setuptools import setup, find_packages


if __name__ == '__main__':
setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
url=URL,
packages=find_packages())
setup(name='mwhutils',
version='0.0.1',
author='Matthew W. Hoffman',
author_email='mwh30@cam.ac.uk',
description='Python machine learning utilities',
url='http://github.com/mwhoffman/mwhutils',
license='Simplified BSD',
packages=find_packages())

0 comments on commit 619426a

Please sign in to comment.