From 69d0a52e154dbd3df6f266db6ac1585107997fea Mon Sep 17 00:00:00 2001 From: Kyle Suarez Date: Thu, 2 Apr 2015 17:31:49 -0400 Subject: [PATCH] Use setuptools rather than distutils The setuptools module has more advanced features, like the `--single-version-externally-managed` flag for packing the module in RPMs. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bcfb892..e65d397 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from distutils.core import setup +from setuptools import setup setup(name = 'Flask-Auth', version = '0.4',