diff options
| author | Barry Warsaw | 2007-07-14 21:23:28 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2007-07-14 21:23:28 -0400 |
| commit | 327865eaf118f40063366acad9c7d97487e010d6 (patch) | |
| tree | eda494bb7560b1427813ae7ec51a22e3d0444703 /setup.py | |
| parent | 288ae405b09baa443eb1b39422c48c315fbb2e5a (diff) | |
| download | mailman-327865eaf118f40063366acad9c7d97487e010d6.tar.gz mailman-327865eaf118f40063366acad9c7d97487e010d6.tar.zst mailman-327865eaf118f40063366acad9c7d97487e010d6.zip | |
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -30,6 +30,16 @@ if sys.hexversion < 0x20500f0: +scripts = ['%(script)s = Mailman.bin.%(script)s:main' % dict(script=script) + for script in ( + 'make_instance', + 'testall', + 'withlist', + ) + ] + + + setup( name = 'mailman', version = __version__, @@ -45,6 +55,18 @@ Any other spelling is incorrect.""", url = 'http://www.list.org', keywords = 'email', packages = find_packages(), + # Executable scripts + entry_points = { + 'console_scripts': scripts, + }, + # Third-party requirements. + install_requires = [ + 'Elixir', + 'SQLAlchemy', + 'munepy', + 'wsgiref', + 'zope.interface', + ], # Optionally use 'nose' for unit test sniffing. extras_require = { 'nose': ['nose'], |
