-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
executable file
·43 lines (41 loc) · 1.25 KB
/
setup.py
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
# 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='[email protected]',
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.9.0b0',
'cryptography>=2.8',
'keyring>=21',
'oauthlib>=3.1',
'pyasyncore',
'pyinotify>=0.9.6',
],
include_package_data=True,
zip_safe=False)