-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (48 loc) · 1.57 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# coding=utf-8
# Authors: Santi Villalba <[email protected]>
# Licence: BSD 3 clause
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import jagged
setup(
name='jagged',
license='BSD 3 clause',
description='Simple tricks for efficient loading or merging collections of unevenly sized elements',
long_description=open('README.rst').read().replace('|Build Status| |Coverage Status| |Scrutinizer Status|', ''),
version=jagged.__version__,
url='https://github.com/sdvillal/jagged',
author='Santi Villalba',
author_email='[email protected]',
packages=['jagged',
'jagged.compression',
'jagged.benchmarks',
'jagged.tests'],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'License :: OSI Approved',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Operating System :: Unix',
],
install_requires=['future',
'numpy',
'whatami>=4.0.0',
'toolz'],
tests_require=['pytest'],
extras_require={
'blosc': ['blosc'],
'bloscpack': ['bloscpack'],
'bcolz': ['bcolz'],
'h5py': ['h5py'],
'joblib': ['joblib'],
'benchmarks': ['psutil']
}
)