Skip to content

Commit

Permalink
Merge pull request #37 from jeromekelleher/release-0.1-changes
Browse files Browse the repository at this point in the history
Final changes for 0.1.0 release.
  • Loading branch information
jeromekelleher authored May 6, 2018
2 parents 9616825 + 8a3cb81 commit 0846f3d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
1 change: 1 addition & 0 deletions python/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include lib/kastore.h
3 changes: 3 additions & 0 deletions python/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ kastore
=======

A simple write-once-read-many store for numerical data.

This package is under active development, and is not recommended for
general use.
7 changes: 1 addition & 6 deletions python/kastore/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
from __future__ import print_function
from __future__ import division

__version__ = "undefined"
try:
from . import _version
__version__ = _version.version
except ImportError:
pass
__version__ = "0.1.0"

from . import store
from . exceptions import FileFormatError
Expand Down
6 changes: 2 additions & 4 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def finalize_options(self):
long_description=long_description,
url='https://github.com/tskit-dev/kastore',
author='tskit developers',
version='0.1.0',
# TODO setup a tskit developers email address.
author_email='[email protected]',
classifiers=[
Expand Down Expand Up @@ -67,8 +68,5 @@ def finalize_options(self):
'Bug Reports': 'https://github.com/tskit-dev/kastore/issues',
'Source': 'https://github.com/tskit-dev/kastore',
},
setup_requires=['numpy', 'setuptools_scm'],
use_scm_version={
"root": "..", "relative_to": __file__,
"write_to": "python/kastore/_version.py"},
setup_requires=['numpy'],
)

0 comments on commit 0846f3d

Please sign in to comment.