-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
42 lines (37 loc) · 1.21 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
from setuptools import setup, find_packages
import sys, os
version = '0.1'
install_requires = [
# List your project dependencies here.
# For more details, see:
# http://packages.python.org/distribute/setuptools.html#declaring-dependencies
'tables',
'Pydap>=3.2',
'Numpy',
]
setup(name='pydap.handlers.pytables',
version=version,
description="HDF5 handler for Pydap based on PyTables",
long_description="""
This handler allows Pydap to serve data from HDF5 files using
`PyTables <http://pytables.github.io/>`_.
""",
classifiers=[
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
keywords='HDF5 PyTables opendap dods dap science meteorology oceanography',
author='Roberto De Almeida',
author_email='[email protected]',
url='https://github.com/robertodealmeida/pydap.handlers.pytables',
license='MIT',
packages=find_packages('src'),
package_dir = {'': 'src'},
namespace_packages = ['pydap', 'pydap.handlers'],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points="""
[pydap.handler]
hdf5 = pydap.handlers.pytables:HDF5Handler
""",
)