From f1b4ec01e0c2797580320a4b1fc04c0002e736b1 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sat, 11 Oct 2014 12:32:26 -0400 Subject: Update style in example for PEP-8 as suggested in PR #86. --- docs/setuptools.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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', -- cgit v1.2.1 From 1714060fb8083ad4f7a440b049d1b8c71dc003be Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 16 Nov 2014 10:41:21 -0500 Subject: Add link to project home page. Fixes #224. --- docs/using.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docs') 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 +`_. -- cgit v1.2.1