Skip to content

Commit

Permalink
Fix import order for setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Jun 9, 2022
1 parent 836c48c commit 9a96faa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pyrfr/setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Setuptools must go above distutils
# https://stackoverflow.com/a/53356077/5332072
from setuptools.command.install import install

import distutils.command.install as orig
from distutils.command.build import build
from distutils.core import Extension, setup

from setuptools.command.install import install


# Customize installation according to https://stackoverflow.com/a/21236111
Expand Down Expand Up @@ -42,6 +45,7 @@ def run(self):
),
]

print(extensions)

setup(
name="pyrfr",
Expand Down

0 comments on commit 9a96faa

Please sign in to comment.