Upgrade distribute to the latest stable version of setuptools

'distribute' is the ancestor of 'setuptools', and many packages require
setuptools to be installed.

Upgrade of MySQL-python from 1.2.4 to 1.2.5 is required because of an
incompatibility with setuptools>0.7.
This commit is contained in:
Régis Behmo
2015-03-24 15:27:10 +01:00
committed by David Baumgold
parent 1574650f28
commit 95ebf7f675
8 changed files with 7 additions and 35 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',