|
| 1 | +[project] |
| 2 | +name = "wagtail-footnotes" |
| 3 | +description = "Add footnotes to rich text in your Wagtail pages" |
| 4 | +authors = [{ name = "Cameron Lamb ", email = "[email protected]"}] |
| 5 | +maintainers = [ |
| 6 | + { name = "Kevin Howbrook", email= "[email protected]"}, |
| 7 | + { name = "Dan Braghis", email= "[email protected]"} |
| 8 | +] |
| 9 | +readme = "README.md" |
| 10 | +license = {file = "LICENSE"} |
| 11 | +keywords = ["Wagtail", "Django", "footnotes", "rich text"] |
| 12 | +classifiers = [ |
| 13 | + "Development Status :: 4 - Beta", |
| 14 | + "Environment :: Web Environment", |
| 15 | + "Intended Audience :: Developers", |
| 16 | + "Operating System :: OS Independent", |
| 17 | + "License :: OSI Approved :: MIT License", |
| 18 | + "Programming Language :: Python", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | + "Programming Language :: Python :: 3.8", |
| 21 | + "Programming Language :: Python :: 3.9", |
| 22 | + "Programming Language :: Python :: 3.10", |
| 23 | + "Programming Language :: Python :: 3.11", |
| 24 | + "Framework :: Django", |
| 25 | + "Framework :: Django :: 3", |
| 26 | + "Framework :: Django :: 3.2", |
| 27 | + "Framework :: Django :: 4", |
| 28 | + "Framework :: Django :: 4.1", |
| 29 | + "Framework :: Django :: 4.2", |
| 30 | + "Framework :: Wagtail", |
| 31 | + "Framework :: Wagtail :: 4", |
| 32 | + "Framework :: Wagtail :: 5", |
| 33 | +] |
| 34 | + |
| 35 | +dynamic = ["version"] # will read __version__ from wagtail_footnotes/__init__.py |
| 36 | +requires-python = ">=3.8" |
| 37 | +dependencies = [ |
| 38 | + "Wagtail>=4.1", |
| 39 | + "Django>=3.2", |
| 40 | +] |
| 41 | + |
| 42 | +[project.optional-dependencies] |
| 43 | +testing = [ |
| 44 | + "pre-commit>=3.3.0,<4", |
| 45 | + "tox>=4.6.4,<5", |
| 46 | + "black==23.7.0", |
| 47 | + "ruff==0.0.280", |
| 48 | + "coverage[toml]>=7.2,<8.0", |
| 49 | +] |
| 50 | + |
| 51 | +[project.urls] |
| 52 | +Repository = "https://github.com/torchbox/wagtail-footnotes" |
| 53 | +Changelog = "https://github.com/torchbox/wagtail-footnotes/blob/main/CHANGELOG.md" |
| 54 | + |
| 55 | + |
| 56 | +[build-system] |
| 57 | +requires = ["flit_core >=3.2,<4"] |
| 58 | +build-backend = "flit_core.buildapi" |
| 59 | + |
| 60 | +[tool.flit.module] |
| 61 | +name = "wagtail_footnotes" |
| 62 | + |
| 63 | +[tool.flit.sdist] |
| 64 | +exclude = [ |
| 65 | + "tests", |
| 66 | + "Makefile", |
| 67 | + "docs", |
| 68 | + ".*", |
| 69 | + "*.json", |
| 70 | + "*.ini", |
| 71 | + "*.yml", |
| 72 | + "CHANGELOG.md", |
| 73 | + "testmanage.py", |
| 74 | +] |
| 75 | + |
1 | 76 | [tool.black] |
2 | 77 | line_length = 88 |
3 | 78 | target-version = ["py38"] |
|
0 commit comments