Skip to content

Commit

Permalink
Fixes install by allowing any setuptools flags (#1257)
Browse files Browse the repository at this point in the history
  • Loading branch information
gus authored and mhammond committed Apr 28, 2019
1 parent c8282d1 commit 14dd9d1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,12 @@
# The rest of our imports.
from setuptools import setup
from distutils.core import Extension
from distutils.command.install import install
from distutils.command.build_ext import build_ext
from setuptools.command.install import install
from setuptools.command.install_lib import install_lib
from setuptools.command.build_ext import build_ext
from setuptools.command.build_py import build_py
from distutils.command.build import build
from distutils.command.install_data import install_data
from distutils.command.build_py import build_py
from distutils.command.build_scripts import build_scripts

try:
Expand Down

0 comments on commit 14dd9d1

Please sign in to comment.