summaryrefslogtreecommitdiff
path: root/setup.py
blob: e6991f60f61b78c30f4ef654c225db400099d766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python

from distutils.core import setup
import alot

setup(name = "alot",
      version = alot.__version__,
      description = alot.__description__,
      author = alot.__author__,
      author_email = alot.__author_email__,
      url = alot.__url__,
      packages = ['alot'],
      scripts = ['bin/alot'],
      license = alot.__copyright__,
      install_requires = ['notmuch', 'argparse' 'urwid'],
)