Upgrade setuptools to 18.0.1

This reverts commit 1a3f0958b9.
This commit is contained in:
David Baumgold
2015-07-15 11:16:17 -04:00
parent b2545ce8a8
commit ebe8b25210
5 changed files with 6 additions and 4 deletions

View File

@@ -4,5 +4,5 @@ setup(
name="capa",
version="0.1",
packages=find_packages(exclude=["tests"]),
install_requires=["distribute>=0.6.28"],
install_requires=["setuptools"],
)

View File

@@ -54,7 +54,7 @@ setup(
version="0.1",
packages=find_packages(exclude=["tests"]),
install_requires=[
'distribute',
'setuptools',
'docopt',
'capa',
'path.py',

View File

@@ -13,7 +13,6 @@ celery==3.1.18
cssselect==0.9.1
dealer==2.0.4
defusedxml==0.4.1
distribute>=0.6.28, <0.7
django-babel-underscore==0.1.0
django-celery==3.1.16
django-countries==3.3

View File

@@ -5,6 +5,9 @@
# * One of @e0d, @feanil, @fredsmith, @maxrothman, or @jibsheet
# to check system requirements
# Use a modern setuptools instead of distribute
setuptools==18.0.1
# Numpy and scipy can't be installed in the same pip run.
# Install numpy before other things to help resolve the problem.
numpy==1.6.2

View File

@@ -7,7 +7,7 @@ from setuptools import setup
setup(
name="Open edX",
version="0.4",
install_requires=["distribute"],
install_requires=["setuptools"],
requires=[],
# NOTE: These are not the names we should be installing. This tree should
# be reorganized to be a more conventional Python tree.