diff options
| author | Barry Warsaw | 2007-07-21 10:04:17 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2007-07-21 10:04:17 -0400 |
| commit | 9e6e3641a7d8738a4adb09c05c4c55882af77e26 (patch) | |
| tree | 0f6c281af767fb6857a27ad6de57e2f1f04d16ae /setup.py | |
| parent | d3191e2e814369ee81a4bdb5ef4cf90fdc12b7ef (diff) | |
| download | mailman-9e6e3641a7d8738a4adb09c05c4c55882af77e26.tar.gz mailman-9e6e3641a7d8738a4adb09c05c4c55882af77e26.tar.zst mailman-9e6e3641a7d8738a4adb09c05c4c55882af77e26.zip | |
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 18 |
1 files changed, 4 insertions, 14 deletions
@@ -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', + ], ) |
