Skip to content

Commit

Permalink
Fixed loading the README
Browse files Browse the repository at this point in the history
  • Loading branch information
nightkr committed Oct 18, 2012
1 parent 3dd4c3a commit fc1ba8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.rst
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from setuptools import setup
from setuptools.command.test import test as TestCommand

from os import path


class PyTest(TestCommand):
def finalize_options(self):
Expand All @@ -22,7 +24,7 @@ def run_tests(self):
author='Nullable',
author_email='teo@nullable.se',
description='An API microframework based on the idea of that the UI is just yet another API endpoint',
long_description=open('README.rst').read(),
long_description=open(path.join(path.dirname(path.abspath(__file__)), 'README.rst')).read(),
packages=['flask_pushrod', 'flask_pushrod.renderers'],
zip_safe=False,
platforms='any',
Expand Down

0 comments on commit fc1ba8c

Please sign in to comment.