-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b11d6dc
commit c07f1a2
Showing
4 changed files
with
37 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'))" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters