File tree Expand file tree Collapse file tree 5 files changed +0
-9
lines changed Expand file tree Collapse file tree 5 files changed +0
-9
lines changed Original file line number Diff line number Diff line change 23
23
# Module has (apparently) unused imports; stop flake8 complaining
24
24
# flake8: noqa
25
25
26
- import numpy as np
27
26
from .deprecated import deprecate_with_version
28
27
29
28
have_dicom = True
Original file line number Diff line number Diff line change 1
1
""" distutils utilities for porting to python 3 within 2-compatible tree """
2
2
3
3
4
- import sys
5
- import re
6
-
7
4
try :
8
5
from distutils .command .build_py import build_py_2to3
9
6
except ImportError :
Original file line number Diff line number Diff line change 10
10
"""Build helper."""
11
11
12
12
import sys
13
- import os
14
13
15
14
from setuptools import setup
16
15
import versioneer
Original file line number Diff line number Diff line change 4
4
5
5
import commands
6
6
import os
7
- import sys
8
- import shutil
9
7
10
8
from toollib import *
11
9
Original file line number Diff line number Diff line change 16
16
__docformat__ = 'restructuredtext'
17
17
18
18
import sys
19
- import setuptools
20
- import bdist_mpkg
21
19
22
20
def main ():
23
21
del sys .argv [0 ]
You can’t perform that action at this time.
0 commit comments