Skip to content

Commit 768070d

Browse files
committed
version update
1 parent a85c6b1 commit 768070d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

h5json/hdf5db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def createHDF5File(filePath):
131131
@staticmethod
132132
def getVersionInfo():
133133
versionInfo = {}
134-
versionInfo['hdf5-json-version'] = "1.0.0" # todo - have this auto-synch with package version
134+
versionInfo['hdf5-json-version'] = "1.1.0" # todo - have this auto-synch with package version
135135
versionInfo['h5py_version'] = h5py.version.version
136136
versionInfo['hdf5_version'] = h5py.version.hdf5_version
137137
return versionInfo

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
# Versions should comply with PEP440. For a discussion on single-sourcing
2424
# the version across setup.py and the project code, see
2525
# https://packaging.python.org/en/latest/single_source_version.html
26-
version='1.0.2',
26+
version='1.1.0',
2727

28-
description='A sample Python project',
28+
description='HDF5/JSON Tools',
2929
long_description=long_description,
3030

3131
# The project's main homepage.
@@ -93,9 +93,9 @@
9393
# If there are data files included in your packages that need to be
9494
# installed, specify them here. If using Python 2.6 or less, then these
9595
# have to be included in MANIFEST.in as well.
96-
#package_data={
97-
# 'sample': ['package_data.dat'],
98-
#},
96+
package_data={
97+
'h5json': ['data/json/*', 'data/hdf5/*']
98+
},
9999

100100
# Although 'package_data' is the preferred approach, in some case you may
101101
# need to place data files outside of your packages. See:

0 commit comments

Comments
 (0)