Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.

Commit ebf8817

Browse files
committed
Switch to setuptools.setup
1 parent a109b6f commit ebf8817

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
from distutils.core import setup
15+
from setuptools import setup
1616

1717
setup(
1818
name = 'adb',
@@ -43,7 +43,7 @@
4343

4444
keywords = ['android', 'adb', 'fastboot'],
4545

46-
requires = ['python-gflags>=2.0', 'libusb1>=1.0.16', 'M2Crypto>=0.21.1'],
46+
install_requires = ['python-gflags>=2.0', 'libusb1>=1.0.16', 'M2Crypto>=0.21.1'],
4747

4848
extra_requires = {
4949
'fastboot': 'progressbar>=2.3'

0 commit comments

Comments
 (0)