summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fs/__init__.py2
-rw-r--r--setup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/__init__.py b/fs/__init__.py
index 59e51cd..414c9c3 100644
--- a/fs/__init__.py
+++ b/fs/__init__.py
@@ -15,7 +15,7 @@ implementations of this interface such as:
"""
-__version__ = "0.5.0-dev"
+__version__ = "0.5.0"
__author__ = "Will McGugan (will@willmcgugan.com)"
# provide these by default so people can use 'fs.path.basename' etc.
diff --git a/setup.py b/setup.py
index 2254aa2..5fd35df 100644
--- a/setup.py
+++ b/setup.py
@@ -42,7 +42,7 @@ extra = {}
if PY3:
extra["use_2to3"] = True
-setup(install_requires=['distribute', 'six'],
+setup(install_requires=['setuptools', 'six'],
name='fs',
version=VERSION,
description="Filesystem abstraction layer",