diff options
author | Georg Brandl <georg@python.org> | 2008-02-09 23:09:36 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-02-09 23:09:36 +0000 |
commit | a1e379d46c9c9d3ca891ab8110495a08ca21c1a9 (patch) | |
tree | ce73d33574afdaccc00c56f828f87e25642787d6 /sphinx-quickstart.py | |
parent | b2ec05e690aa2870967ed188ac9a3be0b0fd8db6 (diff) | |
download | sphinx-git-a1e379d46c9c9d3ca891ab8110495a08ca21c1a9.tar.gz |
Add setup.py, add quickstart script.
Diffstat (limited to 'sphinx-quickstart.py')
-rw-r--r-- | sphinx-quickstart.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sphinx-quickstart.py b/sphinx-quickstart.py new file mode 100644 index 000000000..cce87ab63 --- /dev/null +++ b/sphinx-quickstart.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +""" + Sphinx - Python documentation toolchain + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + :copyright: 2008 by Georg Brandl. + :license: BSD. +""" + +import sys + +if __name__ == '__main__': + from sphinx.quickstart import main + sys.exit(main(sys.argv)) |