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 /setup.py | |
| 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.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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': [ |
