blob: d44277f3394d553f1dfb95b32c56791ca506af6a (
plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
[metadata]
name = natsort
version = 5.3.0
author = Seth M. Morton
author_email = drtuba78@gmail.com
url = https://github.com/SethMMorton/natsort
description = Simple yet flexible natural sorting in Python.
long_description = file: README.rst
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
Intended Audience :: System Administrators
Intended Audience :: Information Technology
Intended Audience :: Financial and Insurance Industry
Operating System :: OS Independent
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 2
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Utilities
Topic :: Text Processing
[options]
install_requires =
argparse; python_version < '2.7'
[options.entry_points]
console_scripts =
natsort = natsort.__main__:main
[options.extras_require]
fast =
fastnumbers >= 2.0.0; python_version > '2.6'
icu =
PyICU >= 1.0.0
[bdist_wheel]
universal = 1
[sdist]
formats = gztar
[tool:pytest]
flakes-ignore =
natsort/compat/py23.py UndefinedName
natsort/__init__.py UnusedImport
natsort/compat/* UnusedImport
docs/source/conf.py ALL
test_natsort/test_natsort.py UnusedImport RedefinedWhileUnused
test_natsort/test_locale_help.py UnusedImport RedefinedWhileUnused
test_natsort/compat/* UnusedImport
pep8ignore =
natsort/ns_enum.py E126 E241 E123 E221
test_natsort/test_*.py E501 E241 E221
test_natsort/test_natsort_keygen.py E501 E241 E221 E701
test_natsort/profile_natsorted.py ALL
docs/source/conf.py ALL
[flake8]
max-line-length = 160
ignore = E231,E302
|