summaryrefslogtreecommitdiff
path: root/setup.py
blob: 350bda1de9d7693529f22f0268c0cff962498bf5 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/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__,
      license=alot.__copyright__,
      packages=[
          'alot',
          'alot.commands',
          'alot.settings',
          'alot.db',
          'alot.utils',
          'alot.widgets',
          'alot.foreign',
          'alot.foreign.urwidtrees'],
      package_data={
          'alot': [
              'defaults/alot.rc.spec',
              'defaults/notmuch.rc.spec',
              'defaults/abook_contacts.spec',
              'defaults/default.theme',
              'defaults/default.bindings',
              'defaults/config.stub',
              'defaults/theme.spec',
              ]},
      scripts=['bin/alot'],
      requires=[
          'notmuch (>=0.13)',
          'argparse (>=2.7)',
          'urwid (>=1.1.0)',
          'twisted (>=10.2.0)',
          'magic',
          'configobj (>=4.6.0)',
          'subprocess (>=2.7)',
          'gpgme (>=0.2)'],
      provides='alot',
      )