|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=46.4.0", "wheel"] |
3 | | -build-backend = "setuptools.build_meta" |
| 2 | +requires = ["flit_core >=3.4,<4"] |
| 3 | +build-backend = "flit_core.buildapi" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "mdit-py-plugins" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "Collection of plugins for markdown-it-py" |
| 9 | +readme = "README.md" |
| 10 | +authors = [{name = "Chris Sewell", email = "chrisj_sewell@hotmail.com"}] |
| 11 | +license = {file = "LICENSE"} |
| 12 | +classifiers = [ |
| 13 | + "Development Status :: 5 - Production/Stable", |
| 14 | + "Intended Audience :: Developers", |
| 15 | + "License :: OSI Approved :: MIT License", |
| 16 | + "Programming Language :: Python :: 3", |
| 17 | + "Programming Language :: Python :: 3.7", |
| 18 | + "Programming Language :: Python :: 3.8", |
| 19 | + "Programming Language :: Python :: 3.9", |
| 20 | + "Programming Language :: Python :: 3.10", |
| 21 | + "Programming Language :: Python :: Implementation :: CPython", |
| 22 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 23 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 24 | + "Topic :: Text Processing :: Markup", |
| 25 | +] |
| 26 | +keywords = ["markdown", "markdown-it", "lexer", "parser", "development"] |
| 27 | +requires-python = ">=3.7" |
| 28 | +dependencies = ["markdown-it-py>=1.0.0,<3.0.0"] |
| 29 | + |
| 30 | +[project.urls] |
| 31 | +Homepage = "https://github.com/executablebooks/mdit-py-plugins" |
| 32 | +Documentation = "https://markdown-it-py.readthedocs.io" |
| 33 | + |
| 34 | +[project.optional-dependencies] |
| 35 | +code_style = ["pre-commit"] |
| 36 | +testing = [ |
| 37 | + "coverage", |
| 38 | + "pytest", |
| 39 | + "pytest-cov", |
| 40 | + "pytest-regressions", |
| 41 | +] |
| 42 | +rtd = [ |
| 43 | + "attrs", |
| 44 | + "myst-parser~=0.16.1", |
| 45 | + "sphinx-book-theme~=0.1.0", |
| 46 | +] |
| 47 | + |
| 48 | +[tool.flit.module] |
| 49 | +name = "mdit_py_plugins" |
| 50 | + |
| 51 | +[tool.flit.sdist] |
| 52 | +exclude = [ |
| 53 | + "docs/", |
| 54 | + "tests/", |
| 55 | +] |
4 | 56 |
|
5 | 57 | [tool.isort] |
6 | 58 | profile = "black" |
| 59 | +force_sort_within_sections = true |
7 | 60 | known_first_party = ["mdit_py_plugins", "tests"] |
| 61 | + |
| 62 | +[tool.mypy] |
| 63 | +show_error_codes = true |
| 64 | +warn_unused_ignores = true |
| 65 | +warn_redundant_casts = true |
| 66 | +no_implicit_optional = true |
| 67 | +strict_equality = true |
0 commit comments