Skip to content

Commit

Permalink
setup.py refers to the correct package now
Browse files Browse the repository at this point in the history
  • Loading branch information
bulkan committed Sep 7, 2011
1 parent bb12b38 commit 83807e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -3,7 +3,7 @@
from distutils.core import setup

from os.path import abspath, dirname, join
execfile(join(dirname(abspath(__file__)), 'src', 'requestslibrary', 'version.py'))
execfile(join(dirname(abspath(__file__)), 'src', 'RequestsLibrary', 'version.py'))

DESCRIPTION = """
Robot Framework keyword library wrapper around the HTTP client library requests.
Expand All @@ -30,5 +30,5 @@
platforms = 'any',
classifiers = CLASSIFIERS.splitlines(),
package_dir = {'' : 'src'},
packages = ['requestslibrary'],
packages = ['RequestsLibrary'],
)

0 comments on commit 83807e7

Please sign in to comment.