summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/setup.py b/setup.py
index 5385dabfe..d41394ea8 100644
--- a/setup.py
+++ b/setup.py
@@ -65,13 +65,6 @@ scripts = set(
for script in mailman.bin.__all__
)
-# Default email commands
-template = Template('$command = mailman.commands.$command')
-commands = set(
- template.substitute(command=command)
- for command in mailman.commands.__all__
- )
-
setup(
@@ -92,8 +85,7 @@ case second `m'. Any other spelling is incorrect.""",
package_dir = {'': 'src'},
include_package_data = True,
entry_points = {
- 'console_scripts': list(scripts),
- 'mailman.commands' : list(commands),
+ 'console_scripts' : list(scripts),
'mailman.handlers' : 'default = mailman.pipeline:initialize',
'mailman.rules' : 'default = mailman.rules:initialize',
'mailman.scrubber' : 'stock = mailman.archiving.pipermail:Pipermail',