Improved post install hook for py 27. (#52)

This commit is contained in:
Paymaun 2018-03-10 14:15:13 -08:00 коммит произвёл Jon Gallant
Родитель 72bf0c1b62
Коммит 797905bfba
1 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -2,21 +2,24 @@
# -*- coding: utf-8 -*-
"""The setup script."""
import atexit
from subprocess import check_call
from setuptools import setup, find_packages
from setuptools.command.install import install
from setuptools.command.develop import develop
def _execute():
check_call("pip install azure-cli --no-deps".split())
class PostInstall(install):
def run(self):
check_call("pip install azure-cli --no-deps".split())
atexit.register(_execute)
install.run(self)
class PostDevelop(develop):
def run(self):
check_call("pip install azure-cli --no-deps".split())
atexit.register(_execute)
develop.run(self)