forked from nylas/sync-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (46 loc) · 1.85 KB
/
Copy pathsetup.py
File metadata and controls
55 lines (46 loc) · 1.85 KB
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
from setuptools import setup, find_packages
setup(
name="inbox-sync",
version="0.4",
packages=find_packages(),
install_requires=[],
dependency_links=[],
package_data={
# If any package contains *.txt or *.rst files, include them:
# '': ['*.txt', '*.rst'],
# And include any *.msg files found in the 'hello' package, too:
# 'hello': ['*.msg'],
},
# See:
# https://pythonhosted.org/setuptools/setuptools.html#dynamic-discovery-of-services-and-plugins
# https://pythonhosted.org/setuptools/pkg_resources.html#entry-points
entry_points={
# See https://pythonhosted.org/setuptools/setuptools.html#automatic-script-creation
# 'console_scripts': [
# 'inbox-consistency-check = inbox.util.consistency_check.__main__:main',
# ],
# See inbox/util/consistency_check/__main__.py
'inbox.consistency_check_plugins': [
'list=inbox.util.consistency_check.list:ListPlugin',
'imap_gm=inbox.util.consistency_check.imap_gm:ImapGmailPlugin',
'local_gm=inbox.util.consistency_check.local_gm:LocalGmailPlugin',
],
# See inbox/providers.py
# 'inbox.providers': [],
# Pluggable auth providers. See inbox/auth/__init__.py
'inbox.auth': [
'generic = inbox.auth.generic:GenericAuthHandler',
'gmail = inbox.auth.gmail:GmailAuthHandler',
# 'oauth = inbox.auth.oauth:OAuthAuthHandler',
'outlook = inbox.auth.outlook:OutlookAuthHandler',
],
# Pluggable auth provider mixins. See inbox/auth/__init__.py
# 'inbox.auth.mixins': [],
},
author="Inbox Team",
author_email="admin@inboxapp.com",
description="The Inbox AppServer",
license="AGPLv3",
keywords="inbox app appserver email",
url="https://www.inboxapp.com",
)