Skip to content

Commit c07f1a2

Browse files
committed
readme and Makefile
1 parent b11d6dc commit c07f1a2

File tree

4 files changed

+37
-4
lines changed

4 files changed

+37
-4
lines changed

Makefile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.PHONY: readme
2+
readme:
3+
pandoc --from=markdown --to=rst --output=README.rst README.md
4+
5+
.PHONY: release
6+
release: readme
7+
python setup.py sdist bdist_wheel upload
8+
9+
.PHONY: test
10+
test:
11+
nosetests --with-coverage --cover-erase --cover-package=fs_s3fs fs_s3fs/tests
12+
rm .coverage
13+
14+
.PHONY: testall
15+
testall:
16+
tox
17+
18+
.PHONY: docs
19+
docs:
20+
cd docs && make html
21+
python -c "import os, webbrowser; webbrowser.open('file://' + os.path.abspath('./docs/build/html/index.html'))"

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1-
# s3fs
2-
Work in Progress S3 filesystem
1+
# S3FS
2+
3+
S3FS is a [PyFilesystem interface](https://docs.pyfilesystem.org/) to
4+
Amazon S3 cloud storage.
5+
6+
As a PyFilesystem concrete class, S3FS allows you to work with S3 in the
7+
same as any other supported filesystem.

README.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
Work in progress S3 Filesystem
1+
S3FS
2+
====
3+
4+
S3FS is a `PyFilesystem interface <https://docs.pyfilesystem.org/>`__ to
5+
Amazon S3 cloud storage.
6+
7+
As a PyFilesystem concrete class, S3FS allows you to work with S3 in the
8+
same as any other supported filesystem.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
exec(f.read())
77

88
CLASSIFIERS = [
9-
'Development Status :: 5 - Production/Stable',
9+
'Development Status :: 4 - Beta',
1010
'Intended Audience :: Developers',
1111
'License :: OSI Approved :: MIT License',
1212
'Operating System :: OS Independent',

0 commit comments

Comments
 (0)