1[metadata]
2name = cachetools
3version = attr: cachetools.__version__
4url = https://github.com/tkem/cachetools/
5author = Thomas Kemmer
6author_email = tkemmer@computer.org
7license = MIT
8license_file = LICENSE
9description = Extensible memoizing collections and decorators
10long_description = file: README.rst
11classifiers =
12	Development Status :: 5 - Production/Stable
13	Environment :: Other Environment
14	Intended Audience :: Developers
15	License :: OSI Approved :: MIT License
16	Operating System :: OS Independent
17	Programming Language :: Python
18	Programming Language :: Python :: 3
19	Programming Language :: Python :: 3.5
20	Programming Language :: Python :: 3.6
21	Programming Language :: Python :: 3.7
22	Programming Language :: Python :: 3.8
23	Programming Language :: Python :: 3.9
24	Topic :: Software Development :: Libraries :: Python Modules
25
26[options]
27package_dir =
28	= src
29packages = find:
30python_requires = ~= 3.5
31
32[options.packages.find]
33where = src
34
35[flake8]
36max-line-length = 80
37exclude = .git, .tox, build
38select = C, E, F, W, B, B950, I, N
39ignore = F401, E501
40
41[build_sphinx]
42source-dir = docs/
43build-dir = docs/_build
44all_files = 1
45
46[egg_info]
47tag_build =
48tag_date = 0
49
50