blob: 786d32fc2b1efe782cb52b61fd41b705a6d6610b (
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
|
[bumpversion]
current_version = 8.2.0
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
long_description_content_type = text/x-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
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Utilities
Topic :: Text Processing
[bumpversion:file:setup.py]
[bumpversion:file:natsort/__init__.py]
[bumpversion:file:docs/conf.py]
[bumpversion:file:CHANGELOG.md]
search = Unreleased
replace = Unreleased
---
[{new_version}] - {now:%%Y-%%m-%%d}
[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
[mypy]
mypy_path = mypy_stubs
|