diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2014-11-08 14:42:10 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2014-11-08 14:42:10 +1300 |
commit | 1a9ba295ce9653635169b7b2f4acacc35dadfe9b (patch) | |
tree | 03f2090f6c63d7cb039c2d18bede6f8f83338fe3 /setup.py | |
parent | c1062db9fd19a3f5ff8468f8db8a6f29d65cc392 (diff) | |
download | mitmproxy-1a9ba295ce9653635169b7b2f4acacc35dadfe9b.tar.gz mitmproxy-1a9ba295ce9653635169b7b2f4acacc35dadfe9b.tar.bz2 mitmproxy-1a9ba295ce9653635169b7b2f4acacc35dadfe9b.zip |
Changelog, remove entry points in favor of scripts
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -35,14 +35,7 @@ setup( packages=find_packages(), include_package_data=True, - - entry_points={ - 'console_scripts': [ - "pathod = libpathod.main:pathod", - "pathoc = libpathod.main:pathoc" - ] - }, - + scripts = ["pathod", "pathoc"], install_requires=[ 'netlib>=%s' % version.MINORVERSION, # It's INSANE that we have to do this, but... |