blob: 58287b49ddcd138a5b08baa5a807227065b1a9f5 (
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
|
[bumpversion]
current_version = 5.4.1
commit = True
tag = True
tag_name = {new_version}
[metadata]
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
license_file = LICENSE
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.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Utilities
Topic :: Text Processing
[bdist_wheel]
universal = 1
[sdist]
formats = gztar
[bumpversion:file:setup.py]
[bumpversion:file:natsort/__init__.py]
[bumpversion:file:docs/conf.py]
[bumpversion:file:docs/changelog.rst]
search = XX-XX-XXXX v. X.X.X
replace = {now:%%m-%%d-%%Y} v. {new_version}
[flake8]
max-line-length = 89
import-order-style = pycharm
doctests = True
max-complexity = 10
exclude =
natsort.egg-info,
.tox,
.cache,
.git,
__pycache__,
build,
dist,
docs,
.venv,
natsort/compat/py23.py
|