File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,22 @@ The rules for this file:
1313 * release numbers follow "Semantic Versioning" http://semver.org
1414
1515------------------------------------------------------------------------------
16+ 06/07/18 orbeckst
17+
18+ * 0.1.1
19+
20+ Fixes
21+ * The 0.1.0 release was not pip-installable and did not ship code (d'oh);
22+ this release is pip-installable (Issue #42)
23+
24+
162505/11/18 kain88-de, orbeckst
1726
1827 * 0.1.0
1928
2029Enhancements
21- * add base class for parallel analysis
22- * add parallel rmsd class (with superposition)
30+ * add base class for parallel analysis
31+ * add parallel rmsd class (with superposition)
2332 * add parallel contacts class
2433 * add parallal AnalysisFromFunction class
2534
Original file line number Diff line number Diff line change 77#
88# Released under the GNU Public Licence, v2 or any higher version
99
10- from setuptools import setup
10+ from setuptools import setup , find_packages
1111import versioneer
1212
1313with open ('README.rst' , 'r' ) as f :
4646 'Issue Tracker' : 'https://github.com/MDAnalysis/pmda/issues/' ,
4747 'Mailing list' : 'https://groups.google.com/group/mdnalysis-discussion' ,
4848 },
49+ packages = find_packages (),
4950 install_requires = [
5051 'MDAnalysis>=0.18' ,
5152 'dask' ,
You can’t perform that action at this time.
0 commit comments