Skip to content

Commit

Permalink
Package fixes for Pypi
Browse files Browse the repository at this point in the history
- Don’t include site folder
- Don’t install tools and tests

fixes #38
  • Loading branch information
facelessuser committed Jan 17, 2017
1 parent f929f03 commit 042c649
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
recursive-include pymdownx *.py
recursive-include docs *
recursive-include tests *.txt *.html *.yml *.py *.css
recursive-exclude site *
include setup.py
include setup.cfg
include run_tests.py
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def get_version():
author='Isaac Muse',
author_email='Isaac.Muse [at] gmail.com',
url='https://github.com/facelessuser/pymdown-extensions',
packages=find_packages(),
packages=find_packages(exclude=['tools', 'tests']),
install_requires=[
'Markdown>=2.6.0,<3'
],
Expand Down

0 comments on commit 042c649

Please sign in to comment.