Skip to content

Commit

Permalink
Release 0.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
dotsdl committed Apr 5, 2016
1 parent 7946d1b commit a77baf0
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 15 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
=====================
MDSynthesis CHANGELOG
=====================

The rules for this file:
* entries are sorted newest-first.
* summarize sets of changes - don't reproduce every git log comment here.
* don't ever delete anything.
* keep the format consistent (79 char width, M/D/Y date format) and do not
use tabs but use spaces for formatting
* accompany each entry with github issue/PR number (Issue #xyz)
* release numbers follow "Semantic Versioning" http://semver.org

------------------------------------------------------------------------------

04/04/16 dotsdl, orbeckst, richardjgowers, sseyler

* 0.6.0
first release
20 changes: 16 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,28 @@
from setuptools import setup, find_packages

setup(name='mdsynthesis',
version='0.6.0-dev',
maintainer='David Dotson',
maintainer_email='dotsdl@gmail.com',
version='0.6.0',
description='a persistence engine for molecular dynamics data',
author='David Dotson',
author_email='dotsdl@gmail.com',
url='http://mdsynthesis.readthedocs.org/',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages('src'),
package_dir={'': 'src'},
license='GPL 2',
long_description=open('README.rst').read(),
install_requires=[
'datreant.core>=0.6.0',
'datreant.data>=0.6.0',
'MDAnalysis>=0.11.0',
'MDAnalysis>=0.14.0',
],
)
11 changes: 0 additions & 11 deletions src/mdsynthesis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,6 @@
"""
MDSynthesis --- a persistence engine for molecular dynamics data
================================================================
MDSynthesis is designed to address the logistical aspects of molecular dynamics
trajectory analysis. Whereas MDAnalysis gives the computational tools to
dissect trajectories, MDSynthesis provides a framework for automatically
organizing the results. This allows you (the scientist) to focus on your
science, letting the computer handle the lower-level logistical details.
.. SeeAlso:: :class:`mdsynthesis.treants.Sim`
:class:`mdsynthesis.treants.Group`
"""
# Bring some often used objects into the current namespace
from datreant.core import Treant, Group, Bundle, Tree, Leaf, View
Expand Down

0 comments on commit a77baf0

Please sign in to comment.