aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: a9fcaf479f98149d6f9b3ba860f1c58b5794196f (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
# SPDX-License-Identifier: GPL-2.0+
#!/usr/bin/env python3
from setuptools import setup

def readme():
    with open('README.md') as f:
        return f.read()

setup(
    name='cloud-mdir-sync',
    version='1.0',
    description='Synchronize cloud mailboxes with a local MailDir',
    long_description=readme(),
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Operating System :: POSIX :: Linux',
        'Topic :: Communications :: Email :: Post-Office',
        'Classifier: License :: OSI Approved :: GNU General Public License (GPL)',
        'Programming Language :: Python :: 3.6',
    ],
    keywords="office365 email maildir",
    url='http://github.com/jgunthorpe',
    author='Jason Gunthorpe',
    author_email='jgg@ziepe.ca',
    license='GPL',
    packages=['cloud_mdir_sync'],
    entry_points={
        'console_scripts': [
            'cloud-mdir-sync=cloud_mdir_sync.main:main',
            'cms-oauth=cloud_mdir_sync.cms_oauth_main:main'
        ],
    },
    python_requires=">=3.6",
    install_requires=[
        'aiohttp>=3.0.1',
        'cryptography>=2.8',
        'keyring>=21',
        'oauthlib>=3.1',
        'pyinotify>=0.9.6',
    ],
    include_package_data=True,
    zip_safe=False)