summaryrefslogtreecommitdiff
path: root/setup.py
blob: f52940ba8b9c3a2be617d96e7fd371818200cb59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python

from distutils.core import setup
import alot



setup(name='alot',
      version=alot.version.generate_version(),
      description=alot.__description__,
      author=alot.__author__,
      author_email=alot.__author_email__,
      url=alot.__url__,
      packages=['alot', 'alot.commands'],
      package_data={'alot': ['defaults/alot.rc', 'defaults/notmuch.rc',
          'VERSION']},
      scripts=['bin/alot'],
      license=alot.__copyright__,
      requires=[
        'notmuch (>=0.9)',
        'argparse (>=2.7)',
        'urwid (>=1.0)',
        'twisted (>=10.2.0)',
        'magic',
        'subprocess (>=2.7)'],
      provides='alot',
)