Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Nov 27, 2016
1 parent c08f259 commit 449eb83
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/source/implementers.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. _implementers:

A Guide For Filesystem Implementers
===================================
Implementing Filesystems
========================

With a little care, you can implement a PyFilesystem interface for any filesystem, which will allow it to work interchangeably with any of the built-in FS classes and tools.

Expand Down
5 changes: 2 additions & 3 deletions fs/opener.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,16 +198,15 @@ def open(self,
object and a path. If there is no path in the FS URL, the path
value will be ``None``.
:param fs_url: A filesystem URL
:type fs_url: str
:param str fs_url: A filesystem URL
:param writeable: True if the filesystem must be writeable
:type writeable: bool
:param create: True if the filesystem should be created if it
does not exist
:type create: bool
:param cwd: The current working directory
:type cwd: str or None
:rtype: Tuple of (<filesystem>, <path from url>)
:rtype: Tuple of ``(<filesystem>, <path from url>)``
"""

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
exec(f.read())

CLASSIFIERS = [
'Development Status :: 2 - Pre-Alpha',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: System :: Filesystems',
]

Expand Down

0 comments on commit 449eb83

Please sign in to comment.