blob: 74bcbc5906282ed42c7c6e98715a47fb6c6ba83c [file] [log] [blame]
Thomas Kemmeraa936f02019-12-15 20:46:13 +01001[metadata]
2name = cachetools
Thomas Kemmer14858da2021-04-27 18:04:47 +02003version = attr: cachetools.__version__
Thomas Kemmeraa936f02019-12-15 20:46:13 +01004url = 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
Thomas Kemmerc9958d92020-12-09 21:23:50 +010023 Programming Language :: Python :: 3.9
Hugo van Kemenade3807e932021-10-11 19:45:39 +030024 Programming Language :: Python :: 3.10
Thomas Kemmeraa936f02019-12-15 20:46:13 +010025 Topic :: Software Development :: Libraries :: Python Modules
Thomas Kemmerf240afd2014-11-24 05:48:07 +010026
Thomas Kemmeraa936f02019-12-15 20:46:13 +010027[options]
Thomas Kemmer6b56d1f2021-04-27 18:10:34 +020028package_dir =
29 = src
Thomas Kemmeraa936f02019-12-15 20:46:13 +010030packages = find:
31python_requires = ~= 3.5
32
33[options.packages.find]
Thomas Kemmer6b56d1f2021-04-27 18:10:34 +020034where = src
Thomas Kemmeraa936f02019-12-15 20:46:13 +010035
36[flake8]
Thomas Kemmer187b13a2021-04-27 07:12:43 +020037max-line-length = 80
38exclude = .git, .tox, build
39select = C, E, F, W, B, B950, I, N
Thomas Kemmerc2345362021-09-30 12:12:13 +020040# F401: imported but unused (submodule shims)
41# E501: line too long (black)
42ignore = F401, E501
Thomas Kemmer78408a12014-09-18 05:32:16 +020043
Thomas Kemmerfa0e6062014-03-22 11:09:33 +010044[build_sphinx]
45source-dir = docs/
46build-dir = docs/_build
47all_files = 1