]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Rename README.txt to README.rst, and add Travis-CI and Coveralls badges to it.
authorDaira Hopwood <daira@jacaranda.org>
Tue, 9 Sep 2014 17:51:44 +0000 (18:51 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Tue, 9 Sep 2014 17:51:44 +0000 (18:51 +0100)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
README.rst [new file with mode: 0644]
README.txt [deleted file]
docs/about.rst
setup.py

diff --git a/README.rst b/README.rst
new file mode 100644 (file)
index 0000000..6ab4e28
--- /dev/null
@@ -0,0 +1,38 @@
+==========
+Tahoe-LAFS
+==========
+
+Tahoe-LAFS is a Free Software/Open Source decentralized data store. It
+distributes your filesystem across multiple servers, and even if some of the
+servers fail or are taken over by an attacker, the entire filesystem continues
+to work correctly and to preserve your privacy and security.
+
+To get started please see `quickstart.rst`_ in the docs directory.
+
+LICENCE
+=======
+
+Copyright 2006-2014 The Tahoe-LAFS Software Foundation
+
+You may use this package under the GNU General Public License, version 2 or, at
+your option, any later version.  You may use this package under the Transitive
+Grace Period Public Licence, version 1.0, or at your option, any later
+version. (You may choose to use this package under the terms of either licence,
+at your option.)  See the file `COPYING.GPL`_ for the terms of the GNU General
+Public License, version 2.  See the file `COPYING.TGPPL.rst`_ for the terms of
+the Transitive Grace Period Public Licence, version 1.0.
+
+See `TGPPL.PDF`_ for why the TGPPL exists, graphically illustrated on three slides.
+
+.. _quickstart.rst: https://github.com/tahoe-lafs/tahoe-lafs/blob/master/docs/quickstart.rst
+.. _COPYING.GPL: https://github.com/tahoe-lafs/tahoe-lafs/blob/master/COPYING.GPL
+.. _COPYING.TGPPL.rst: https://github.com/tahoe-lafs/tahoe-lafs/blob/master/COPYING.TGPPL.rst
+.. _TGPPL.PDF: https://tahoe-lafs.org/~zooko/tgppl.pdf
+
+----
+
+.. image:: https://travis-ci.org/tahoe-lafs/tahoe-lafs.png?branch=master
+  :target: https://travis-ci.org/tahoe-lafs/tahoe-lafs
+
+.. image:: https://coveralls.io/repos/tahoe-lafs/tahoe-lafs/badge.png?branch=master
+  :target: https://coveralls.io/r/tahoe-lafs/tahoe-lafs?branch=master
diff --git a/README.txt b/README.txt
deleted file mode 100644 (file)
index 392e896..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-==========
-Tahoe-LAFS
-==========
-
-Tahoe-LAFS is a Free Software/Open Source decentralized data store. It
-distributes your filesystem across multiple servers, and even if some of the
-servers fail or are taken over by an attacker, the entire filesystem continues
-to work correctly and to preserve your privacy and security.
-
-To get started please see `quickstart.rst`_ in the docs directory.
-
-LICENCE
-=======
-
-Copyright 2006-2014 The Tahoe-LAFS Software Foundation
-
-You may use this package under the GNU General Public License, version 2 or, at
-your option, any later version.  You may use this package under the Transitive
-Grace Period Public Licence, version 1.0, or at your option, any later
-version. (You may choose to use this package under the terms of either licence,
-at your option.)  See the file `COPYING.GPL`_ for the terms of the GNU General
-Public License, version 2.  See the file `COPYING.TGPPL.rst`_ for the terms of
-the Transitive Grace Period Public Licence, version 1.0.
-
-See `TGPPL.PDF`_ for why the TGPPL exists, graphically illustrated on three slides.
-
-.. _quickstart.rst: https://github.com/tahoe-lafs/tahoe-lafs/blob/master/docs/quickstart.rst
-.. _COPYING.GPL: https://github.com/tahoe-lafs/tahoe-lafs/blob/master/COPYING.GPL
-.. _COPYING.TGPPL.rst: https://github.com/tahoe-lafs/tahoe-lafs/blob/master/COPYING.TGPPL.rst
-.. _TGPPL.PDF: https://tahoe-lafs.org/~zooko/tgppl.pdf
index 9c447ba928688d5f9de9b81c15ea1ad65d17a451..6df61229ecdd829f503e8f4cbbed8298272b1703 100644 (file)
@@ -112,6 +112,6 @@ To use Tahoe-LAFS, please see quickstart.rst_.
 License
 =======
 
-Tahoe-LAFS is an open-source project; please see README.txt_ for details.
+Tahoe-LAFS is an open-source project; please see README.rst_ for details.
 
-.. _README.txt: ../README.txt
+.. _README.rst: ../README.rst
index 469f7c875fb130d51105ab98b5ddf2767b95a72c..7ae67612537061f877c4f19c6569c9da36f08d9f 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -434,11 +434,11 @@ if version:
 
 setup(name=APPNAME,
       description='secure, decentralized, fault-tolerant filesystem',
-      long_description=open('README.txt', 'rU').read(),
+      long_description=open('README.rst', 'rU').read(),
       author='the Tahoe-LAFS project',
       author_email='tahoe-dev@tahoe-lafs.org',
       url='https://tahoe-lafs.org/',
-      license='GNU GPL', # see README.txt -- there is an alternative licence
+      license='GNU GPL', # see README.rst -- there is an alternative licence
       cmdclass={"trial": Trial,
                 "make_executable": MakeExecutable,
                 "update_version": UpdateVersion,