Skip to content

Commit

Permalink
add imports
Browse files Browse the repository at this point in the history
  • Loading branch information
fumiama authored Aug 12, 2022
1 parent 5af6b9d commit 2364104
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@
import setuptools.command.develop
from setuptools import Extension, find_packages, setup

import six
from tqdm.auto import tqdm
if six.PY2:
from urllib import urlretrieve
else:
from urllib.request import urlretrieve
import tarfile


platform_is_windows = sys.platform == "win32"

version = "0.3.0"
Expand Down

0 comments on commit 2364104

Please sign in to comment.