summaryrefslogtreecommitdiff
path: root/textproc/py-mkdocs-material/files/patch-setup.py
diff options
context:
space:
mode:
authorKai Knoblich <kai@FreeBSD.org>2022-12-20 14:46:39 +0100
committerKai Knoblich <kai@FreeBSD.org>2022-12-20 14:46:39 +0100
commitbd0faf19d07f445d8ea43c69b45bb26eaf236ac0 (patch)
treec2e141b635ad79bbcb216ed30ab9ccab02316682 /textproc/py-mkdocs-material/files/patch-setup.py
parenttextproc/py-pymdown-extensions: Update to 9.9 (diff)
textproc/py-mkdocs-material: Update to 8.5.11
Changelog since 8.4.4: https://github.com/squidfunk/mkdocs-material/compare/8.4.4...8.5.11
Diffstat (limited to 'textproc/py-mkdocs-material/files/patch-setup.py')
-rw-r--r--textproc/py-mkdocs-material/files/patch-setup.py52
1 files changed, 52 insertions, 0 deletions
diff --git a/textproc/py-mkdocs-material/files/patch-setup.py b/textproc/py-mkdocs-material/files/patch-setup.py
new file mode 100644
index 000000000000..dc4f53f88f2a
--- /dev/null
+++ b/textproc/py-mkdocs-material/files/patch-setup.py
@@ -0,0 +1,52 @@
+Generated via adding
+
+[tool.hatch.build.targets.sdist]
+support-legacy = true
+
+to setup.py and then run "hatchling build".
+
+--- setup.py.orig 2022-12-20 10:46:10 UTC
++++ setup.py
+@@ -0,0 +1,42 @@
++# -*- coding: utf-8 -*-
++from setuptools import setup
++
++setup(
++ name='mkdocs-material',
++ version='%%DISTVERSION%%',
++ description='Documentation that simply works',
++ long_description='',
++ author_email='Martin Donath <martin.donath@squidfunk.com>',
++ classifiers=[
++ 'Development Status :: 5 - Production/Stable',
++ 'Environment :: Web Environment',
++ 'License :: OSI Approved :: MIT License',
++ 'Programming Language :: JavaScript',
++ 'Programming Language :: Python',
++ 'Topic :: Documentation',
++ 'Topic :: Software Development :: Documentation',
++ 'Topic :: Text Processing :: Markup :: HTML',
++ ],
++ install_requires=[
++ 'jinja2>=3.0.2',
++ 'markdown>=3.2',
++ 'mkdocs-material-extensions>=1.1',
++ 'mkdocs>=1.4.0',
++ 'pygments>=2.12',
++ 'pymdown-extensions>=9.4',
++ 'requests>=2.26',
++ ],
++ entry_points={
++ 'mkdocs.plugins': [
++ 'search = material.plugins.search.plugin:SearchPlugin',
++ 'social = material.plugins.social.plugin:SocialPlugin',
++ 'tags = material.plugins.tags.plugin:TagsPlugin',
++ ],
++ 'mkdocs.themes': [
++ 'material = material',
++ ],
++ },
++ package_data={
++ '': ['*', '.icons/*', '.icons/*/*', '.icons/*/*/*'],
++ },
++)