summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorBarry Warsaw2007-07-21 10:04:17 -0400
committerBarry Warsaw2007-07-21 10:04:17 -0400
commit9e6e3641a7d8738a4adb09c05c4c55882af77e26 (patch)
tree0f6c281af767fb6857a27ad6de57e2f1f04d16ae /setup.py
parentd3191e2e814369ee81a4bdb5ef4cf90fdc12b7ef (diff)
downloadmailman-9e6e3641a7d8738a4adb09c05c4c55882af77e26.tar.gz
mailman-9e6e3641a7d8738a4adb09c05c4c55882af77e26.tar.zst
mailman-9e6e3641a7d8738a4adb09c05c4c55882af77e26.zip
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py18
1 files changed, 4 insertions, 14 deletions
diff --git a/setup.py b/setup.py
index 8ba185d09..45167dadc 100644
--- a/setup.py
+++ b/setup.py
@@ -80,18 +80,10 @@ Any other spelling is incorrect.""",
keywords = 'email',
packages = find_packages(),
include_package_data = True,
- # This doesn't work to include the generated .mo files because they are
- # neither maintained under revision control, nor do they live in a Python
- # package directory.
-## package_data = {
-## # Include .mo generated files
-## 'Mailman/messages': ['*.mo'],
-## },
- # Executable scripts
entry_points = {
'console_scripts': list(scripts),
'setuptools.file_finders': [
- 'bzr = setupbzr:find_files_for_bzr',
+ 'bzr = setuptoolsbzr:find_files_for_bzr',
],
},
# Third-party requirements.
@@ -102,9 +94,7 @@ Any other spelling is incorrect.""",
'wsgiref',
'zope.interface',
],
- # Optionally use 'nose' for unit test sniffing.
- extras_require = {
- 'nose': ['nose'],
- },
- test_suite = 'nose.collector',
+ setup_requires = [
+ 'setuptoolsbzr',
+ ],
)