1[metadata] 2name = cachetools 3version = attr: cachetools.__version__ 4url = https://github.com/tkem/cachetools/ 5author = Thomas Kemmer 6author_email = [email protected] 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 Programming Language :: Python :: 3.10 25 Topic :: Software Development :: Libraries :: Python Modules 26 27[options] 28package_dir = 29 = src 30packages = find: 31python_requires = ~= 3.5 32 33[options.packages.find] 34where = src 35 36[flake8] 37max-line-length = 80 38exclude = .git, .tox, build 39select = C, E, F, W, B, B950, I, N 40# F401: imported but unused (submodule shims) 41# E501: line too long (black) 42ignore = F401, E501 43 44[build_sphinx] 45source-dir = docs/ 46build-dir = docs/_build 47all_files = 1 48