@@ -4,7 +4,7 @@ author = xarray Developers
4
4
author_email = xarray@googlegroups.com
5
5
license = Apache
6
6
description = N-D labeled arrays and datasets in Python
7
- long_description_content_type =x-rst
7
+ long_description_content_type =text/ x-rst
8
8
long_description =
9
9
**xarray** (formerly **xray**) is an open source project and Python package
10
10
that makes working with labelled multi-dimensional arrays simple,
@@ -43,16 +43,11 @@ long_description =
43
43
powerful and concise interface. For example:
44
44
45
45
- Apply operations over dimensions by name: ``x.sum(' time' )``.
46
- - Select values by label instead of integer location:
47
- ``x.loc[' 2014-01-01' ]`` or ``x.sel(time =' 2014-01-01' )``.
48
- - Mathematical operations (e.g., ``x - y``) vectorize across multiple
49
- dimensions (array broadcasting) based on dimension names, not shape.
50
- - Flexible split-apply-combine operations with groupby:
51
- ``x.groupby(' time.dayofyear' ).mean()``.
52
- - Database like alignment based on coordinate labels that smoothly
53
- handles missing values: ``x, y = xr.align(x, y, join =' outer' )``.
54
- - Keep track of arbitrary metadata in the form of a Python dictionary:
55
- ``x.attrs``.
46
+ - Select values by label instead of integer location: ``x.loc[' 2014-01-01' ]`` or ``x.sel(time =' 2014-01-01' )``.
47
+ - Mathematical operations (e.g., ``x - y``) vectorize across multiple dimensions (array broadcasting) based on dimension names, not shape.
48
+ - Flexible split-apply-combine operations with groupby: ``x.groupby(' time.dayofyear' ).mean()``.
49
+ - Database like alignment based on coordinate labels that smoothly handles missing values: ``x, y = xr.align(x, y, join =' outer' )``.
50
+ - Keep track of arbitrary metadata in the form of a Python dictionary: ``x.attrs``.
56
51
57
52
Learn more
58
53
----------
0 commit comments