Source: natsort
Section: python
Priority: optional
Maintainer: Agustin Henze <tin@debian.org>
Uploaders: Ulises Vitulli <dererk@debian.org>
Build-Depends:
 debhelper (>= 9),
 dh-python,
 help2man,
 python-all,
 python-setuptools,
 python3-all,
 python3-setuptools,
 python-sphinx (>= 1.0.7+dfsg) | python3-sphinx,
Standards-Version: 3.9.6
X-Python-Version: >= 2.7
X-Python3-Version: >= 3.4
Homepage: https://github.com/SethMMorton/natsort
Vcs-Git: git://anonscm.debian.org/collab-maint/natsort.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/natsort.git

Package: python-natsort
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}
Recommends: python-natsort-doc
Breaks: python-naturalsort
Conflicts: python-naturalsort
Replaces: python-naturalsort
Description: Natural sorting for python
 natsort lets you apply natural sorting to your sequences easily, for example:
 .
  >>> from natsort import natsorted
  >>> a = ['a2', 'a9', 'a1', 'a4', 'a10']
  >>> data = [['a1', 'a5'], ['a1', 'a40'], ['a10', 'a1'], ['a2', 'a5']]
  >>> natsorted(a)
  ['a1', 'a2', 'a4', 'a9', 'a10'
  >>> natsorted(data)
  [['a1', 'a5'], ['a1', 'a40'], ['a2', 'a5'], ['a10', 'a1']]
 .
 natsort identifies the numbers and sorts them separately from strings.
 .
 natsort comes with a shell script to use natural sorting in shell scripts. You
 can also execute natsort from the command line with python -m natsort.
 .
 There exists another natural sorting package for Python called
 python-naturalsort. You may prefer that package if you wish to only sort
 version numbers.

Package: python3-natsort
Architecture: all
Recommends: python-natsort-doc
Breaks: python-natsort (<= 3.2.1-1)
Depends: ${python3:Depends}, ${misc:Depends}
Description: Natural sorting for Python (python3)
 natsort lets you apply natural sorting to your sequences easily, for example:
 .
  >>> from natsort import natsorted
  >>> a = ['a2', 'a9', 'a1', 'a4', 'a10']
  >>> data = [['a1', 'a5'], ['a1', 'a40'], ['a10', 'a1'], ['a2', 'a5']]
  >>> natsorted(a)
  ['a1', 'a2', 'a4', 'a9', 'a10'
  >>> natsorted(data)
  [['a1', 'a5'], ['a1', 'a40'], ['a2', 'a5'], ['a10', 'a1']]
 .
 natsort identifies the numbers and sorts them separately from strings.
 .
 natsort comes with a shell script to use natural sorting in shell scripts. You
 can also execute natsort from the command line with python -m natsort.
 .
 There exists another natural sorting package for Python called
 python-naturalsort. You may prefer that package if you wish to only sort
 version numbers.


Package: python-natsort-doc
Architecture: all
Section: doc
Depends: ${misc:Depends}, ${sphinxdoc:Depends}
Recommends: python3-natsort
Description: Natural sorting for Python (doc)
 natsort lets you apply natural sorting to your sequences easily, for example:
 .
  >>> from natsort import natsorted
  >>> a = ['a2', 'a9', 'a1', 'a4', 'a10']
  >>> data = [['a1', 'a5'], ['a1', 'a40'], ['a10', 'a1'], ['a2', 'a5']]
  >>> natsorted(a)
  ['a1', 'a2', 'a4', 'a9', 'a10'
  >>> natsorted(data)
  [['a1', 'a5'], ['a1', 'a40'], ['a2', 'a5'], ['a10', 'a1']]
 .
 natsort identifies the numbers and sorts them separately from strings.
 .
 natsort comes with a shell script to use natural sorting in shell scripts. You
 can also execute natsort from the command line with python -m natsort.
 .
 There exists another natural sorting package for Python called
 python-naturalsort. You may prefer that package if you wish to only sort
 version numbers.
 .
 This package contains API documentation and examples.
