File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 12
12
import sys
13
13
from subprocess import check_call
14
14
15
+ from setuptools import Command
15
16
from setuptools import setup
16
17
from setuptools .command .bdist_egg import bdist_egg
18
+ from setuptools .command .build_py import build_py
19
+ from setuptools .command .sdist import sdist
17
20
18
21
19
22
v = sys .version_info
@@ -132,14 +135,9 @@ def get_package_data():
132
135
)
133
136
134
137
# ---------------------------------------------------------------------------
135
- # custom distutils commands
138
+ # custom setuptools commands
136
139
# ---------------------------------------------------------------------------
137
140
138
- # imports here, so they are after setuptools import if there was one
139
- from distutils .cmd import Command
140
- from distutils .command .build_py import build_py
141
- from distutils .command .sdist import sdist
142
-
143
141
144
142
def mtime (path ):
145
143
"""shorthand for mtime"""
You can’t perform that action at this time.
0 commit comments