diff options
| author | tarek <none@none> | 2009-10-09 14:38:15 +0200 |
|---|---|---|
| committer | tarek <none@none> | 2009-10-09 14:38:15 +0200 |
| commit | 739f071eff009685fc70d6caa464c3eb799c9365 (patch) | |
| tree | d4541e01b9c58a057bb6f9de152ee05f52a5ebd8 /README.txt | |
| parent | a5633e5ddf0063b1b58e2f0950ec50e1718cbdc7 (diff) | |
| download | external_python_setuptools-739f071eff009685fc70d6caa464c3eb799c9365.tar.gz external_python_setuptools-739f071eff009685fc70d6caa464c3eb799c9365.tar.bz2 external_python_setuptools-739f071eff009685fc70d6caa464c3eb799c9365.zip | |
fixed use_setuptools
--HG--
branch : distribute
extra : rebase_source : ef32212ac795e851f32e63d1ec9fd7e3765caf92
Diffstat (limited to 'README.txt')
| -rwxr-xr-x | README.txt | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -143,6 +143,26 @@ Lastly: - remove the *.OLD.* directory located in your site-packages directory if any, **once you have checked everything was working correctly again**. +------------------------- +Quick help for developers +------------------------- + +To use Distribute in your package, the recommended way is to ship +`distribute_setup.py` alongside your `setup.py` script and call +it at the very begining of `setup.py` like this:: + + from distribute_setup import use_setuptools + use_setuptools() + + +Another way is to add ``Distribute`` in the ``install_requires`` option:: + + from setuptools import setup + + setup(... + install_requires=['distribute'] + ) + ----------- Install FAQ ----------- |
