summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS4
-rw-r--r--MANIFEST.in3
-rw-r--r--fs/__init__.py2
-rw-r--r--fs/tests/test_s3fs.py2
-rw-r--r--setup.py2
5 files changed, 10 insertions, 3 deletions
diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..2a23b18
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,4 @@
+
+Will McGugan (will@willmcgugan.com)
+Ryan Kelly (ryan@rfk.id.au)
+
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..0ee9f2f
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,3 @@
+
+include AUTHORS
+
diff --git a/fs/__init__.py b/fs/__init__.py
index cbcd176..b13785e 100644
--- a/fs/__init__.py
+++ b/fs/__init__.py
@@ -14,7 +14,7 @@ implementations of this interface such as:
"""
-__version__ = "0.1.1dev"
+__version__ = "0.2.0"
__author__ = "Will McGugan (will@willmcgugan.com)"
# 'base' imports * from 'path' and 'errors', so their contents
diff --git a/fs/tests/test_s3fs.py b/fs/tests/test_s3fs.py
index 13531b9..74a4e9a 100644
--- a/fs/tests/test_s3fs.py
+++ b/fs/tests/test_s3fs.py
@@ -18,7 +18,7 @@ from fs import s3fs
class TestS3FS(unittest.TestCase,FSTestCases):
# Disable the tests by default
- #__test__ = False
+ __test__ = False
bucket = "test-s3fs.rfk.id.au"
diff --git a/setup.py b/setup.py
index 79cc224..bec3722 100644
--- a/setup.py
+++ b/setup.py
@@ -23,6 +23,6 @@ setup(name='fs',
url="http://code.google.com/p/pyfilesystem/",
download_url="http://code.google.com/p/pyfilesystem/downloads/list",
platforms = ['any'],
- packages=['fs'],
+ packages=['fs','fs.expose','fs.expose.fuse','fs.tests'],
classifiers=classifiers,
)