Skip to content

Commit 9feb43c

Browse files
authored
Merge pull request #43 from MDAnalysis/fix-install
include code in package
2 parents 8a69254 + 2faac08 commit 9feb43c

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

CHANGELOG

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff 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+
1625
05/11/18 kain88-de, orbeckst
1726

1827
* 0.1.0
1928

2029
Enhancements
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

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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
1111
import versioneer
1212

1313
with open('README.rst', 'r') as f:
@@ -46,6 +46,7 @@
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',

0 commit comments

Comments
 (0)