summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index c9a3900..f42e919 100644
--- a/setup.py
+++ b/setup.py
@@ -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']