Skip to content

Commit

Permalink
fixed error that missed files in distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebader committed Sep 21, 2018
1 parent b9a5d1d commit 55c70c5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
9 changes: 6 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
include LICENSE
include MANIFEST.in
include README.rst
recursive-include cv/static *
recursive-include cv/templates *
recursive-include docs *
graft docs
graft cv/static *
graft cv/templates *
global-exclude __pycache__
global-exclude *.py[co]
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@

setuptools.setup(
name='django-vitae',
version='0.0.1',
version='0.0.2',
author='Michael Bader',
author_email='[email protected]',
description='A CV generator built for the Django web framework.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/mikebader/django-vitae',
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'django>=1.11',
'markdown>=2.6.11',
Expand Down

0 comments on commit 55c70c5

Please sign in to comment.