Skip to content

Commit

Permalink
remove install pip as dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Ribeiro committed Feb 22, 2017
1 parent 6cb5f60 commit 334701e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions marketplace/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from subprocess import call
from setuptools import setup
from setuptools.command.install import install
from setuptools.command import easy_install
try:
from configparser import ConfigParser # @UnusedImport
except:
Expand All @@ -26,9 +25,6 @@ def run(self):
plugin_file = path.join(plugin_path, plugin_module + '.py')
print("Copy {} to {}".format(plugin_file, install_path))
call("cp -p {} {}".format(plugin_file, install_path), shell=True)

print("Install dependency")
easy_install.main(['--user', 'pip'] )


def read_cfg():
Expand Down

0 comments on commit 334701e

Please sign in to comment.