Skip to content

Commit

Permalink
readme and Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Aug 5, 2017
1 parent b11d6dc commit c07f1a2
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 4 deletions.
21 changes: 21 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.PHONY: readme
readme:
pandoc --from=markdown --to=rst --output=README.rst README.md

.PHONY: release
release: readme
python setup.py sdist bdist_wheel upload

.PHONY: test
test:
nosetests --with-coverage --cover-erase --cover-package=fs_s3fs fs_s3fs/tests
rm .coverage

.PHONY: testall
testall:
tox

.PHONY: docs
docs:
cd docs && make html
python -c "import os, webbrowser; webbrowser.open('file://' + os.path.abspath('./docs/build/html/index.html'))"
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# s3fs
Work in Progress S3 filesystem
# S3FS

S3FS is a [PyFilesystem interface](https://docs.pyfilesystem.org/) to
Amazon S3 cloud storage.

As a PyFilesystem concrete class, S3FS allows you to work with S3 in the
same as any other supported filesystem.
9 changes: 8 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
Work in progress S3 Filesystem
S3FS
====

S3FS is a `PyFilesystem interface <https://docs.pyfilesystem.org/>`__ to
Amazon S3 cloud storage.

As a PyFilesystem concrete class, S3FS allows you to work with S3 in the
same as any other supported filesystem.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
exec(f.read())

CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
Expand Down

0 comments on commit c07f1a2

Please sign in to comment.