diff options
| author | Barry Warsaw | 2007-12-27 23:04:08 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2007-12-27 23:04:08 -0500 |
| commit | 13dea3a6736834e19ad569b5e3d70a79e096a55e (patch) | |
| tree | ab8448fd114436cd1dc9a1754ce8c9c7dfc865d4 /setup.py | |
| parent | 7923b90f0349f9e2dc891082e2e1c3bf23b4d79c (diff) | |
| download | mailman-13dea3a6736834e19ad569b5e3d70a79e096a55e.tar.gz mailman-13dea3a6736834e19ad569b5e3d70a79e096a55e.tar.zst mailman-13dea3a6736834e19ad569b5e3d70a79e096a55e.zip | |
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -82,15 +82,14 @@ Any other spelling is incorrect.""", include_package_data = True, entry_points = { 'console_scripts': list(scripts), - 'setuptools.file_finders': 'bzr = setuptoolsbzr:find_files_for_bzr', - # Entry point for plugging in different database backends. + 'setuptools.file_finders': 'bzr = setuptools_bzr:find_files_for_bzr', 'mailman.database' : 'stock = Mailman.database:StockDatabase', 'mailman.styles' : 'default = Mailman.app.styles:DefaultStyle', 'mailman.mta' : 'stock = Mailman.MTA:Manual', + 'mailman.rules' : 'default = Mailman.rules:BuiltinRules', }, # Third-party requirements. install_requires = [ - 'SQLAlchemy', 'locknix', 'munepy', 'storm', @@ -98,6 +97,6 @@ Any other spelling is incorrect.""", 'zope.interface', ], setup_requires = [ - 'setuptoolsbzr', + 'setuptools_bzr', ], ) |
