-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change package name from python-hdf4 to pyhdf (#22)
* Change package name from python-hdf4 to pyhdf Fixes #13 * Rename python-hdf4 to pyhdf everywhere * Update README * Convert README to markdown * Update copyright year in docs
- Loading branch information
Showing
9 changed files
with
79 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[![Build Status](https://travis-ci.org/fhs/pyhdf.svg?branch=master)](https://travis-ci.org/fhs/pyhdf) | ||
|
||
# pyhdf | ||
|
||
pyhdf is a python wrapper around the NCSA HDF version 4 library. | ||
The SD (Scientific Dataset), VS (Vdata) and V (Vgroup) API's | ||
are currently implemented. NetCDF files can also be | ||
read and modified. It supports both Python 2 and Python 3. | ||
|
||
*Note:* The sourceforge pyhdf | ||
[website](http://pysclint.sourceforge.net/pyhdf/) and | ||
[project](https://sourceforge.net/projects/pysclint/) are out-of-date. | ||
The original author of pyhdf have abandoned the project and it is | ||
currently maintained in [github](https://github.com/fhs/pyhdf). | ||
|
||
Version 0.9.x was called | ||
[python-hdf4](https://pypi.org/project/python-hdf4/) | ||
in PyPI because at that time we didn't have | ||
[access](https://github.com/pypa/warehouse/issues/5157) to the | ||
[pyhdf package](https://pypi.org/project/pyhdf/) in PyPI. For version | ||
0.10.0 and onwards, please install `pyhdf` instead of `python-hdf4`. | ||
|
||
## Installation | ||
|
||
To install, see http://fhs.github.io/pyhdf/install.html | ||
or file [doc/install.rst](doc/install.rst). | ||
|
||
## Documentation | ||
|
||
For documentation, see http://fhs.github.io/pyhdf/ | ||
|
||
Additional documentation on the HDF4 format can be | ||
found in the User Guide: | ||
http://www.hdfgroup.org/release4/doc/UsrGuide_html/UG_Top.html | ||
|
||
## Examples | ||
|
||
Example python programs using the pyhdf package | ||
can be found inside the examples/ subdirectory. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
#!/usr/bin/env python | ||
"""Python-HDF4: Python interface to the NCSA HDF4 library. | ||
"""pyhdf: Python interface to the NCSA HDF4 library. | ||
The Python-HDF4 package wraps the functionality of the NCSA HDF version | ||
The pyhdf package wraps the functionality of the NCSA HDF version | ||
4 library inside a Python OOP framework. The SD (scientific dataset), | ||
VS (Vdata) and V (Vgroup) APIs are currently implemented. SD datasets | ||
are read/written through numpy arrays. NetCDF files can also be read | ||
and modified with Python-HDF4. | ||
This package is a fork of pyhdf (http://pysclint.sourceforge.net/pyhdf/). | ||
and modified with pyhdf. | ||
""" | ||
|
||
from __future__ import print_function | ||
|
@@ -178,15 +176,15 @@ def _use_hdf4alt(libdirs): | |
else: | ||
data_files = [] | ||
|
||
setup(name = 'python-hdf4', | ||
maintainer = 'python-hdf4 authors', | ||
setup(name = 'pyhdf', | ||
maintainer = 'pyhdf authors', | ||
maintainer_email = '[email protected]', | ||
author = 'Andre Gosselin et al.', | ||
description = DOCLINES[0], | ||
keywords = ['hdf4', 'netcdf', 'numpy', 'python', 'pyhdf'], | ||
license = 'MIT', | ||
long_description = "\n".join(DOCLINES[2:]), | ||
url = 'https://github.com/fhs/python-hdf4', | ||
url = 'https://github.com/fhs/pyhdf', | ||
version = '0.9.2', | ||
packages = ['pyhdf'], | ||
ext_modules = [_hdfext], | ||
|