File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1- include ./README.adoc
1+ include ./README.adoc
2+ include ./adoc_math/d_mathjax_wrapper.js
Original file line number Diff line number Diff line change 22
33LICENSE = "ISC"
44DIR = "adoc_math"
5- VERSION = "1.0.0 "
5+ VERSION = "1.0.1 "
66NAME = "adoc-math"
77SETUP_DIR = "_setup"
88README = "README.adoc"
99AUTHOR = "Dominik Teiml"
1010PYTHON_REQUIRES = ">=3.7"
11+ INCLUDE_PACKAGE_DATA = True
1112DESCRIPTION = """Use MathJax (Latex or AsciiMath) in your AsciiDoc projects!"""
1213# text/asciidoc is not supported
1314# Ref: https://packaging.python.org/en/latest/specifications/core-metadata/#description-content-type
1415LONG_DESCRIPTION_CONTENT_TYPE = "text/plain"
1516
16-
1717extras_require = dict (
1818 tests = [
1919 "pytest >= 6.2.5, < 7.0.0" ,
2626 if "tests" not in some_dir .split ("." )
2727] + [DIR ]
2828
29+ package_data = dict (
30+ NAME = [
31+ f"./{ DIR } /**/*.py" ,
32+ f"./{ DIR } /**/*.js" ,
33+ ]
34+ )
35+
2936entry_points = dict (
3037 console_scripts = [
3138 f"{ NAME } = { DIR } .__main__:main" ,
4653 packages = packages ,
4754 description = DESCRIPTION ,
4855 entry_points = entry_points ,
56+ package_data = package_data ,
4957 extras_require = extras_require ,
5058 python_requires = PYTHON_REQUIRES ,
5159 long_description = long_description ,
60+ include_package_data = INCLUDE_PACKAGE_DATA ,
5261 long_description_content_type = LONG_DESCRIPTION_CONTENT_TYPE ,
5362)
You can’t perform that action at this time.
0 commit comments