From a1b272c304caebb69bb7003bf2eeaf415ddf4756 Mon Sep 17 00:00:00 2001 From: Simon Gibbons Date: Thu, 23 Apr 2015 10:30:24 +0100 Subject: [PATCH] Updated version number and download URL --- pyfof/pyfof.pyx | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyfof/pyfof.pyx b/pyfof/pyfof.pyx index 66a9839..ef408c6 100644 --- a/pyfof/pyfof.pyx +++ b/pyfof/pyfof.pyx @@ -6,7 +6,7 @@ Created on Thu Mar 26 17:59:28 2015 """ __all__ = ["friends_of_friends"] -__version__ = "0.1" +__version__ = "0.1.2" __author__ = "Simon Gibbons (sljg2@ast.cam.ac.uk)" __copyright__ = "Copyright 2015 Simon Gibbons" diff --git a/setup.py b/setup.py index 6fe0e3c..8b6bb16 100644 --- a/setup.py +++ b/setup.py @@ -70,11 +70,12 @@ def build_extension(self, ext): extensions = cythonize(extensions) setup( name = "pyfof", - version="0.2-dev", + version="0.1.2", description="Friends-of-friends cluster finding in python", author="Simon Gibbons", author_email="sljg2@ast.cam.ac.uk", url="https://github.com/simongibbons/pyfof", + download_url = "https://github.com/simongibbons/pyfof/tarball/v0.1.2" license="MIT", keywords=['clustering', 'friends-of-friends'],