forked from telegraphic/hickle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (21 loc) · 798 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# To increment version
# git tag x.y.z
# git push --tags
# python setup.py sdist upload
import sys
if sys.version_info[0] != 2:
sys.stderr.write("This package only supports Python 2.\n")
sys.exit(1)
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 = '[email protected]',
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', 'scipy']
)