Skip to content

Commit

Permalink
wrong module name in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankoegl committed Aug 2, 2011
1 parent fb80392 commit 8b58861
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -3,14 +3,14 @@
from distutils.core import setup
import re

src = open('jsonpatch.py').read()
src = open('jsonpointer.py').read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", src))
docstrings = re.findall('"""(.*)"""', src)

PACKAGE = 'jsonpatch'
PACKAGE = 'jsonpointer'

MODULES = (
'jsonpatch',
'jsonpointer',
)

AUTHOR_EMAIL = metadata['author']
Expand Down

0 comments on commit 8b58861

Please sign in to comment.