Skip to content

Commit

Permalink
updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebader committed Sep 22, 2018
1 parent f53fd5f commit d3d4f0a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
import setuptools

with open('README.rst', 'r') as f:
long_description = f.read()
def long_description():
with open('README.rst', 'r') as f:
return f.read()

setuptools.setup(
name='django-vitae',
version='0.0.2',
version='0.0.2.6',
author='Michael Bader',
author_email='michaeldmbader@gmail.com',
license='BSD Three Clause',
description='A CV generator built for the Django web framework.',
long_description=long_description,
long_description_content_type='text/markdown',
long_description=long_description(),
url='https://github.com/mikebader/django-vitae',
packages=setuptools.find_packages(),
include_package_data=True,
Expand Down

0 comments on commit d3d4f0a

Please sign in to comment.