-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed error that missed files in distribution
- Loading branch information
Showing
2 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|