diff options
| author | Georg Brandl <georg@python.org> | 2008-11-02 23:32:15 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2008-11-02 23:32:15 +0100 |
| commit | c9784595e7d4f66be3505e26ead08375eb30e355 (patch) | |
| tree | 48355ed9d5b258675130a80c2b7d741207f98096 | |
| parent | 905c58ef8f21a6c887f210ff82df40fd1aeb1819 (diff) | |
| download | sphinx-c9784595e7d4f66be3505e26ead08375eb30e355.tar.gz | |
Add a manifest, since setuptools doesn't support hg.
Also add a few more things to hgignore file.
| -rw-r--r-- | .hgignore | 3 | ||||
| -rw-r--r-- | MANIFEST.in | 22 | ||||
| -rw-r--r-- | setup.py | 4 |
3 files changed, 27 insertions, 2 deletions
@@ -1 +1,4 @@ .*\.pyc +dist +Sphinx.egg-info +doc/_build diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..c468330d --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,22 @@ +include README +include LICENSE +include AUTHORS +include CHANGES +include EXAMPLES +include TODO + +include babel.cfg +include Makefile +include ez_setup.py +include sphinx-build.py +include sphinx-quickstart.py + +recursive-include sphinx/texinputs *.* +recursive-include sphinx/templates *.html *.xml +recursive-include sphinx/static *.* +recursive-include sphinx/locale *.* +recursive-include tests *.* +recursive-include utils *.* + +recursive-include doc *.* +prune doc/_build @@ -4,7 +4,7 @@ ez_setup.use_setuptools() import os import sys -from setuptools import setup +from setuptools import setup, find_packages from distutils import log import sphinx @@ -172,7 +172,7 @@ setup( 'Topic :: Utilities', ], platforms='any', - packages=['sphinx'], + packages=find_packages(), include_package_data=True, entry_points={ 'console_scripts': [ |
