Artifact [a6785d7258]
Artifact a6785d7258d626107b1f7b681110dc2ceb232079f42df4ec8cb7d741be00fc1d:
- Executable file html2mallard/setup.py — part of check-in [b7a9065f17] at 2021-01-03 20:07:21 on branch trunk — html2mallard split up rules for different templates, add --debug flag (user: mario size: 501)
#!/usr/bin/env python3 # encoding: utf-8 # api: pip # type: build # title: config for setuptools # # Always prefer setuptools over distutils # from pluginconf.setup import setup setup( debug=1, fn="html2mallard.py", long_description="README.md", packages=[""], package_dir={"": "."}, py_modules=['html2mallard'], entry_points={ "console_scripts": [ "html2mallard=html2mallard:main", "mkdocs-mallard=html2mallard:mkdocs", ] } )