fixed setup

This commit is contained in:
Corey Goldberg 2012-11-29 18:29:10 -05:00
parent 895f55174b
commit 5233315b12
2 changed files with 5 additions and 4 deletions

View File

@ -9,8 +9,9 @@ from distutils.core import setup
import xvfbwrapper
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, 'README.rst')) as f:
LONG_DESCRIPTION = '\n' + f.read()
setup(
@ -18,7 +19,7 @@ setup(
version = xvfbwrapper.__version__,
packages = ['xvfbwrapper'],
author = 'Corey Goldberg',
author_email = 'corey@goldb.org',
author_email = 'cgoldberg _at_ gmail.com',
description = 'wrapper for running a display inside X virtual framebuffer (Xvfb)',
long_description = LONG_DESCRIPTION,
url = 'http://cgoldberg.github.com/xvfbwrapper/',

View File

@ -1,3 +1,3 @@
from xvfbwrapper import *
__version__ = '0.1.0'
__version__ = '0.1.1'