|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.2"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "dogpile.cache" |
| 7 | +description = "A caching front-end based on the Dogpile lock." |
| 8 | +readme = "README.rst" |
| 9 | +keywords = ["caching"] |
| 10 | +authors = [{name = "Mike Bayer", email = "mike_mp@zzzcomputing.com"}] |
| 11 | +license = {text = "MIT"} |
| 12 | +classifiers = [ |
| 13 | + "Development Status :: 5 - Production/Stable", |
| 14 | + "Intended Audience :: Developers", |
| 15 | + "License :: OSI Approved :: MIT License", |
| 16 | + "Programming Language :: Python", |
| 17 | + "Programming Language :: Python :: 3", |
| 18 | +] |
| 19 | +requires-python = ">=3.8" |
| 20 | +dependencies = [ |
| 21 | + "decorator>=4.0.0", |
| 22 | + "stevedore>=3.0.0", |
| 23 | + "typing_extensions>=4.0.1;python_version<'3.11'", |
| 24 | +] |
| 25 | +dynamic = ["version"] |
| 26 | + |
| 27 | +[project.urls] |
| 28 | +Homepage = "https://github.com/sqlalchemy/dogpile.cache" |
| 29 | +Documentation = "https://dogpilecache.sqlalchemy.org" |
| 30 | +"Issue Tracker" = "https://github.com/sqlalchemy/dogpile.cache/" |
| 31 | + |
| 32 | +[project.optional-dependencies] |
| 33 | +pifpaf = [ |
| 34 | + "pifpaf>=2.5.0", |
| 35 | + "setuptools;python_version>='3.12'", |
| 36 | +] |
| 37 | + |
| 38 | +[project.entry-points."mako.cache"] |
| 39 | +"dogpile.cache" = "dogpile.cache.plugins.mako_cache:MakoPlugin" |
| 40 | + |
| 41 | + |
| 42 | +[tool.setuptools] |
| 43 | +zip-safe = false |
| 44 | +include-package-data = true |
| 45 | +package-dir = {"" = "."} |
| 46 | +license-files = ["LICENSE"] |
| 47 | + |
| 48 | +[tool.setuptools.packages.find] |
| 49 | +exclude = [ |
| 50 | + "tests", |
| 51 | + "tests.*", |
| 52 | +] |
| 53 | +namespaces = false |
| 54 | + |
| 55 | +[tool.setuptools.exclude-package-data] |
| 56 | +dogpile = ["tests*"] |
| 57 | + |
| 58 | +[tool.setuptools.package-data] |
| 59 | +dogpile = ["py.typed"] |
| 60 | + |
| 61 | +[tool.setuptools.dynamic] |
| 62 | +version = {attr = "dogpile.__version__"} |
| 63 | + |
1 | 64 | [tool.black] |
2 | 65 | line-length = 79 |
3 | | -target-version = ['py36'] |
| 66 | +target-version = ['py38'] |
| 67 | + |
| 68 | + |
| 69 | +[tool.pytest.ini_options] |
| 70 | +addopts = "--tb native -v -r fxX -p no:logging -p no:warnings -m 'not time_intensive'" |
| 71 | +python_files = "tests/*test_*.py" |
| 72 | +filterwarnings = [ |
| 73 | + "error" |
| 74 | +] |
| 75 | + |
0 commit comments