File tree Expand file tree Collapse file tree 4 files changed +37
-4
lines changed
Expand file tree Collapse file tree 4 files changed +37
-4
lines changed Original file line number Diff line number Diff line change 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'))"
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 66 exec (f .read ())
77
88CLASSIFIERS = [
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' ,
You can’t perform that action at this time.
0 commit comments