Skip to content

Commit f311f50

Browse files
authored
🔧 MAINTAIN: Update Manifest (#37)
1 parent 8f16805 commit f311f50

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ repos:
2323
- id: trailing-whitespace
2424
- id: flake8
2525

26+
- repo: https://github.com/mgedmin/check-manifest
27+
rev: "0.39"
28+
hooks:
29+
- id: check-manifest
30+
2631
- repo: https://github.com/psf/black
2732
rev: stable
2833
hooks:

MANIFEST.in

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,21 @@
1+
exclude docs
2+
recursive-exclude docs *
3+
exclude tests
4+
recursive-exclude tests *
5+
exclude benchmarking
6+
recursive-exclude benchmarking *
7+
8+
exclude .pre-commit-config.yaml
9+
exclude .readthedocs.yml
10+
exclude tox.ini
11+
exclude docstring.fmt.mustache
12+
exclude .flake8
13+
exclude .circleci
14+
exclude .circleci/config.yml
15+
116
include LICENSE
17+
include LICENSE.markdown-it
18+
include CHANGELOG.md
19+
20+
recursive-exclude markdown_it *.js
21+
recursive-include markdown_it port.yaml LICENSE README.md

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ def get_version():
2222
author_email="[email protected]",
2323
license="MIT",
2424
packages=find_packages(exclude=["test*", "benchmarking"]),
25+
include_package_data=True,
2526
entry_points={"console_scripts": ["markdown-it = markdown_it.cli.parse:main"]},
2627
classifiers=[
2728
"Development Status :: 3 - Alpha",

0 commit comments

Comments
 (0)