diff --git a/circle.yml b/circle.yml index c0e9715..64638e0 100644 --- a/circle.yml +++ b/circle.yml @@ -15,3 +15,4 @@ test: - flake8 md_pdf/ --ignore=E128,E501 - safety check - bandit -r md_pdf/ + - mdp --help diff --git a/md_pdf/config/__init__.py b/md_pdf/config/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index a357cdc..ec9d32c 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup +from setuptools import setup, find_packages setup( @@ -13,6 +13,8 @@ setup( "pyscss==1.3.5", "PyYAML==3.12" ], + packages=find_packages(), + include_package_data=True, entry_points=""" [console_scripts] mdp=md_pdf.cli:cli