From 654a0fb512707693c34e8cdd83c0544f0a3c5aba Mon Sep 17 00:00:00 2001 From: John Beieler Date: Wed, 16 Jul 2014 18:02:25 -0400 Subject: [PATCH] setup.py best practices. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 09b2e7e..9f94bb5 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from distutils.core import setup +from setuptools import setup with open('requirements.txt', 'r') as f: required = f.read().splitlines()