summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2010-06-20 14:19:11 +0200
committerMichele Simionato <michele.simionato@gmail.com>2010-06-20 14:19:11 +0200
commitf0cd41b6cb6cd0118a733d98c95fc57387953b6c (patch)
tree8c8a065fe89d43abe5eea8af18679334ce8503bb
parent3a60eba7b4cbd88c0117e5c2cedbd5406b2eefe5 (diff)
downloadmicheles-f0cd41b6cb6cd0118a733d98c95fc57387953b6c.tar.gz
Fixed the README to be valid ReST
-rw-r--r--plac/Makefile2
-rw-r--r--plac/README.txt25
-rw-r--r--plac/setup.py2
3 files changed, 11 insertions, 18 deletions
diff --git a/plac/Makefile b/plac/Makefile
index f83245c..52bd70c 100644
--- a/plac/Makefile
+++ b/plac/Makefile
@@ -5,4 +5,4 @@ doc/plac.pdf: doc/plac.txt
doc/plac_adv.pdf: doc/plac_adv.txt
cd doc; rst2pdf --footer=###Page### plac_adv.txt; rst2html --stylesheet=$(HOME)/gcode/df.css plac_adv.txt plac_adv.html
upload:
- python setup.py register sdist upload
+ python3 setup.py register sdist upload
diff --git a/plac/README.txt b/plac/README.txt
index 687e986..79f4bf0 100644
--- a/plac/README.txt
+++ b/plac/README.txt
@@ -1,13 +1,3 @@
-plac, the smartest command line arguments parser in the world
-=============================================================
-
-:Author: Michele Simionato
-:E-mail: michele.simionato@gmail.com
-:Requires: Python 2.3+
-:Download page: http://pypi.python.org/pypi/plac
-:Installation: ``easy_install -U plac``
-:License: BSD license
-
Installation
-------------
@@ -57,14 +47,17 @@ or
Documentation
--------------
-You can choose between the `HTML version`_ and the `PDF version`_:
+The source code and the documentation are hosted on Google code.
+First you should read the basic documentation:
-.. _HTML version: http://micheles.googlecode.com/hg/plac/doc/plac.html
-.. _PDF version: http://micheles.googlecode.com/hg/plac/doc/plac.pdf
+http://micheles.googlecode.com/hg/plac/doc/plac.html
+
+http://micheles.googlecode.com/hg/plac/doc/plac.pdf
There is also an additional documentation for advanced usages of plac,
-such as using plac_ for testing/scripting an application and to
+such as using plac for testing/scripting an application and to
write domain specific languages (DSL):
-.. _HTML version: http://micheles.googlecode.com/hg/plac/doc/plac_adv.html
-.. _PDF version: http://micheles.googlecode.com/hg/plac/doc/plac_adv.pdf
+http://micheles.googlecode.com/hg/plac/doc/plac_adv.html
+
+http://micheles.googlecode.com/hg/plac/doc/plac_adv.pdf
diff --git a/plac/setup.py b/plac/setup.py
index f255d96..e847568 100644
--- a/plac/setup.py
+++ b/plac/setup.py
@@ -13,7 +13,7 @@ def getversion(fname):
if __name__ == '__main__':
setup(name='plac',
version=getversion(os.path.join(os.path.dirname(__file__),'plac.py')),
- description='The easiest command line arguments parser in the world',
+ description='The smartest command line arguments parser in the world',
long_description=open('README.txt').read(),
author='Michele Simionato',
author_email='michele.simionato@gmail.com',