Skip to content

Commit f3302a1

Browse files
committedJan 30, 2020
fix setup.cfg
1 parent 5cf3b08 commit f3302a1

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed
 

‎setup.cfg

+6-11
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author = xarray Developers
44
author_email = xarray@googlegroups.com
55
license = Apache
66
description = N-D labeled arrays and datasets in Python
7-
long_description_content_type=x-rst
7+
long_description_content_type=text/x-rst
88
long_description =
99
**xarray** (formerly **xray**) is an open source project and Python package
1010
that makes working with labelled multi-dimensional arrays simple,
@@ -43,16 +43,11 @@ long_description =
4343
powerful and concise interface. For example:
4444

4545
- 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``.
5651

5752
Learn more
5853
----------

0 commit comments

Comments
 (0)
Please sign in to comment.