Last active
December 22, 2015 15:18
-
-
Save manpages/6490935 to your computer and use it in GitHub Desktop.
Replace distutils with setuptools in pycoin's setup.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/setup.py b/setup.py | |
index c20d3a0..e94b73f 100755 | |
--- a/setup.py | |
+++ b/setup.py | |
@@ -1,10 +1,10 @@ | |
#!/usr/bin/env python | |
-import distutils.core | |
+from setuptools import setup | |
version = "0.23" | |
-distutils.core.setup( | |
+setup( | |
name="pycoin", | |
version=version, | |
packages = [ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment