Skip to content

Instantly share code, notes, and snippets.

@manpages
Last active December 22, 2015 15:18
Show Gist options
  • Save manpages/6490935 to your computer and use it in GitHub Desktop.
Save manpages/6490935 to your computer and use it in GitHub Desktop.
Replace distutils with setuptools in pycoin's setup.py
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