Removed ez_setup.py

There are no common cases where it will be used anymore:

* pip always installs stuff with setuptools
* Modern pythons preinstall setuptools
This commit is contained in:
Alex Gaynor
2016-02-13 10:14:16 -05:00
parent 56a4e791d6
commit 7b759b1db7
2 changed files with 1 additions and 338 deletions
+1 -6
View File
@@ -1,10 +1,5 @@
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
from setuptools import setup, find_packages
import os
import sys