-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
56 lines (50 loc) · 1.4 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
53
54
55
56
#!/usr/bin/env python
from setuptools import setup
setup_requires = [
'nose',
'coverage',
]
install_requires = [
'h5py',
'numpy',
'scipy',
'six',
]
tests_require = []
description = "Scipy sparse matrix in HDF5."
long_description = """\
Please visit the `Github repository <https://github.com/appier/h5sparse>`_
for more information.\n
"""
with open('README.rst') as fp:
long_description += fp.read()
setup(
name='h5sparse',
version="0.1.0",
description=description,
long_description=long_description,
author='Appier Inc.',
url='https://github.com/appier/h5sparse',
setup_requires=setup_requires,
install_requires=install_requires,
tests_require=tests_require,
license="MIT",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
],
test_suite='nose.collector',
packages=[
'h5sparse',
],
)