From 2faac08e4fc967228a6107660b93976def8b00c6 Mon Sep 17 00:00:00 2001 From: Oliver Beckstein Date: Thu, 7 Jun 2018 10:27:18 -0700 Subject: [PATCH] include code in package - fix #42 - CHANGELOG: make this a quick 0.1.1 --- CHANGELOG | 13 +++++++++++-- setup.py | 3 ++- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index c5e37d32..6d1a0894 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -13,13 +13,22 @@ The rules for this file: * release numbers follow "Semantic Versioning" http://semver.org ------------------------------------------------------------------------------ +06/07/18 orbeckst + + * 0.1.1 + +Fixes + * The 0.1.0 release was not pip-installable and did not ship code (d'oh); + this release is pip-installable (Issue #42) + + 05/11/18 kain88-de, orbeckst * 0.1.0 Enhancements - * add base class for parallel analysis - * add parallel rmsd class (with superposition) + * add base class for parallel analysis + * add parallel rmsd class (with superposition) * add parallel contacts class * add parallal AnalysisFromFunction class diff --git a/setup.py b/setup.py index a50c040d..5a14ee9d 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ # # Released under the GNU Public Licence, v2 or any higher version -from setuptools import setup +from setuptools import setup, find_packages import versioneer with open('README.rst', 'r') as f: @@ -46,6 +46,7 @@ 'Issue Tracker': 'https://github.com/MDAnalysis/pmda/issues/', 'Mailing list': 'https://groups.google.com/group/mdnalysis-discussion', }, + packages=find_packages(), install_requires=[ 'MDAnalysis>=0.18', 'dask',