summaryrefslogtreecommitdiff
path: root/setup.py
blob: 56b9f89486a68b190e71d37299bee5e1b0093728 (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
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python3

from setuptools import setup, find_packages
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__,
    classifiers=[
        'Development Status :: 4 - Beta',
        'Environment :: Console :: Curses',
        'Framework :: AsyncIO',
        'Intended Audience :: End Users/Desktop',
        (
            'License :: OSI Approved'
            ':: GNU General Public License v3 or later (GPLv3+)'),
        'Operating System :: POSIX',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3 :: Only',
        'Topic :: Communications :: Email :: Email Clients (MUA)',
        'Topic :: Database :: Front-Ends',
    ],
    packages=find_packages(exclude=['tests*']),
    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',
        ]
    },
    entry_points={
        'console_scripts':
            ['alot = alot.__main__:main'],
    },
    install_requires=[
        'notmuch2>=0.27',
        'urwid>=1.3.0',
        'twisted>=18.4.0',
        'python-magic',
        'configobj>=4.7.0',
        'gpg'
    ],
    provides=['alot'],
    test_suite="tests",
    python_requires=">=3.7",
)