forked from telegraphic/hickle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (17 loc) · 668 Bytes
/
setup.py
File metadata and controls
17 lines (17 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# To increment version
# git tag x.y.z
# git push --tags
# python setup.py sdist upload
from distutils.core import setup
setup(name = 'hickle',
version = '2.0.5',
description = 'Hickle - a HDF5 based version of pickle',
author = 'Danny Price',
author_email = 'dan@thetelegraphic.com',
url = 'http://github.com/telegraphic/hickle',
download_url='https://github.com/telegraphic/hickle/archive/2.0.5.tar.gz',
platforms = 'Cross platform (Linux, Mac OSX, Windows)',
keywords = ['pickle', 'hdf5', 'data storage', 'data export'],
py_modules = ['hickle', 'hickle_legacy'],
install_requires=['numpy', 'h5py']
)