summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2014-09-26 17:25:43 +0200
committerStefan Kögl <stefan@skoegl.net>2014-09-26 17:25:43 +0200
commit6f7fc9bf72609c89df0b8f307a36eebe86e11bcd (patch)
treedeb3c1fa3a4ee176d8e56398e88ab97b5958089d
parent98e272e7177fbcf0bc401bb03279a05492a51d7c (diff)
downloadpython-json-patch-6f7fc9bf72609c89df0b8f307a36eebe86e11bcd.tar.gz
Fix installation of commandline scripts (fixes #31)
-rw-r--r--setup.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index 7ebe16f..8f515b1 100644
--- a/setup.py
+++ b/setup.py
@@ -75,11 +75,6 @@ setup(name=PACKAGE,
py_modules=MODULES,
package_data={'': ['requirements.txt']},
scripts=['bin/jsondiff', 'bin/jsonpatch'],
- entry_points = {
- 'console_scripts': [
- 'jsondiff = jsondiff:main',
- 'jsonpatch = jsonpatch:main',
- ]},
classifiers=CLASSIFIERS,
**OPTIONS
)