Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
Our first release. Huzzah!
  • Loading branch information
dotsdl committed Mar 23, 2016
1 parent a11f059 commit b803c75
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 11 deletions.
11 changes: 2 additions & 9 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,7 @@ The rules for this file:
* release numbers follow "Semantic Versioning" http://semver.org

------------------------------------------------------------------------------
??/??/16 dotsdl, andreabedini, richardjgowers, orbeckst, sseyler
03/23/16 dotsdl, andreabedini, richardjgowers, orbeckst, sseyler

* 0.6.0

API Changes

Enhancement

Changes

Fixes
first release
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[pytest]
pep8ignore = __init__.py E402

[bdist_wheel]
universal=1
14 changes: 13 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,21 @@
from setuptools import setup, find_packages

setup(name='datreant.core',
version='0.6.0-dev',
version='0.6.0',
description='persistent, pythonic trees for heterogeneous data',
author='David Dotson',
author_email='dotsdl@gmail.com',
url = 'http://datreant.org/',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages('src'),
namespace_packages=['datreant'],
package_dir={'': 'src'},
Expand Down
2 changes: 1 addition & 1 deletion src/datreant/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@
from . import attach

__all__ = ['Treant', 'Group', 'Tree', 'Leaf', 'Bundle']
__version__ = "0.6.0-dev" # NOTE: keep in sync with RELEASE in setup.py
__version__ = "0.6.0" # NOTE: keep in sync with RELEASE in setup.py

0 comments on commit b803c75

Please sign in to comment.