aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/setuptools.txt2
-rw-r--r--docs/using.txt3
2 files changed, 4 insertions, 1 deletions
diff --git a/docs/setuptools.txt b/docs/setuptools.txt
index c3844cf2..a34ec304 100644
--- a/docs/setuptools.txt
+++ b/docs/setuptools.txt
@@ -473,7 +473,7 @@ script called ``baz``, you might do something like this::
setup(
# other arguments here...
- entry_points = {
+ entry_points={
'console_scripts': [
'foo = my_package.some_module:main_func',
'bar = other_module:some_func',
diff --git a/docs/using.txt b/docs/using.txt
index e44847d6..bd80893d 100644
--- a/docs/using.txt
+++ b/docs/using.txt
@@ -8,3 +8,6 @@ it at the very beginning of `setup.py` like this::
from ez_setup import use_setuptools
use_setuptools()
+
+More info on `ez_setup.py` can be found at `the project home page
+<https://pypy.python.org/pypi/setuptools>`_.