Skip to content

Commit 55c70c5

Browse files
committed
fixed error that missed files in distribution
1 parent b9a5d1d commit 55c70c5

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

MANIFEST.in

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
include LICENSE
2+
include MANIFEST.in
23
include README.rst
3-
recursive-include cv/static *
4-
recursive-include cv/templates *
5-
recursive-include docs *
4+
graft docs
5+
graft cv/static *
6+
graft cv/templates *
7+
global-exclude __pycache__
8+
global-exclude *.py[co]

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@
55

66
setuptools.setup(
77
name='django-vitae',
8-
version='0.0.1',
8+
version='0.0.2',
99
author='Michael Bader',
1010
author_email='michaeldmbader@gmail.com',
1111
description='A CV generator built for the Django web framework.',
1212
long_description=long_description,
1313
long_description_content_type='text/markdown',
1414
url='https://github.com/mikebader/django-vitae',
1515
packages=setuptools.find_packages(),
16+
include_package_data=True,
1617
install_requires=[
1718
'django>=1.11',
1819
'markdown>=2.6.11',

0 commit comments

Comments
 (0)