summaryrefslogtreecommitdiff
path: root/docs/userguide
diff options
context:
space:
mode:
Diffstat (limited to 'docs/userguide')
-rw-r--r--docs/userguide/entry_point.rst13
1 files changed, 5 insertions, 8 deletions
diff --git a/docs/userguide/entry_point.rst b/docs/userguide/entry_point.rst
index 2e3bf7e1..28bdc3ad 100644
--- a/docs/userguide/entry_point.rst
+++ b/docs/userguide/entry_point.rst
@@ -69,15 +69,12 @@ your configuration:
from setuptools import setup
setup(
- name='timmins',
- version='0.0.1',
- packages=['timmins'],
- # ...
+ # ...,
entry_points={
- 'console_scripts': [
- 'hello-world=timmins:hello_world',
- ]
- }
+ 'console_scripts': [
+ 'hello-world=timmins:hello_world',
+ ]
+ }
)
.. tab:: pyproject.toml (**EXPERIMENTAL**) [#experimental]_