forked from python-humanize/humanize
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
65 lines (58 loc) · 1.82 KB
/
setup.cfg
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
[metadata]
name = humanize
description = Python humanize utilities
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/python-humanize/humanize
author = Jason Moiron
author_email = [email protected]
maintainer = Hugo van Kemenade
license = MIT
license_file = LICENCE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Text Processing
Topic :: Text Processing :: General
keywords = humanize time size
project_urls =
Source=https://github.com/python-humanize/humanize
Issue tracker=https://github.com/python-humanize/humanize/issues
Funding=https://tidelift.com/subscription/pkg/pypi-humanize?utm_source=pypi-humanize&utm_medium=pypi
Documentation=https://python-humanize.readthedocs.io/
Release notes=https://github.com/python-humanize/humanize/releases
[options]
packages = find:
install_requires =
importlib-metadata;python_version < '3.8'
python_requires = >=3.7
include_package_data = True
package_dir = =src
zip_safe = False
[options.packages.find]
where = src
[options.extras_require]
tests =
freezegun
pytest
pytest-cov
[flake8]
max_line_length = 88
[pydocstyle]
convention = google
[tool:isort]
profile = black
[tool:pytest]
addopts = --color=yes