forked from nylas/sync-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
109 lines (103 loc) · 3.38 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
import glob
import os
from setuptools import setup, find_packages
setup(
name="inbox-sync",
version="0.4",
packages=find_packages(),
install_requires=[
"gevent>=1.0.1",
"nylas-production-python>=0.2.10",
"click>=2.4",
"cpu_affinity>=0.1.0",
"pyyaml",
"SQLAlchemy==1.0.11",
"alembic>=0.6.4",
"requests>=2.4.3",
"html2text>=2014.9.8",
"pyinstrument>=0.12",
"PyMySQL>=0.6.2",
"mysqlclient==1.3.7",
"setproctitle>=1.1.8",
"pymongo>=2.5.2",
"python-dateutil==2.4.2",
"ipython>=1.0.0",
"enum34==1.0.4",
"gdata>=2.0.18",
"icalendar>=3.8.2",
"simplejson>=3.6.0",
"Flask>=0.10.1",
"Flask-RESTful==0.3.2",
"pynacl>=0.2.3",
"flanker>=0.4.26",
"httplib2>=0.8",
"six>=1.8",
"vobject>=0.8.1c",
"lxml>=3.4.2",
"arrow==0.5.4",
"statsd>=3.1",
"boto3==1.1.4",
"Pympler==0.4.2",
"pyopenssl>=0.15.1",
"gevent_openssl==1.2",
"backports.ssl>=0.0.9",
"imapclient==1.0.1",
"tldextract==1.7.5",
],
dependency_links=["git+https://github.com/nylas/dateutil.git@da336a366cd3#egg=python-dateutil-2.4.2"],
include_package_data=True,
package_data={
# "inbox-sync": ["alembic.ini"],
# 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'],
},
data_files=[("alembic-inbox-sync", ["alembic.ini"]),
("alembic-inbox-sync/migrations",
filter(os.path.isfile, glob.glob("migrations/*"))),
("alembic-inbox-sync/migrations/versions",
filter(os.path.isfile, glob.glob("migrations/versions/*")))
],
scripts=['bin/inbox-start',
'bin/inbox-console',
'bin/summary-stats',
'bin/inbox-auth',
'bin/delete-account-data',
'bin/create-db',
'bin/create-test-db',
'bin/verify-db',
'bin/migrate-db',
'bin/stamp-db',
'bin/inbox-api',
'bin/get-id',
'bin/get-object',
'bin/set-throttled',
'bin/syncback-service',
'bin/contact-search-service',
'bin/contact-search-backfill',
'bin/contact-search-delete-index',
'bin/populate-sync-queue',
'bin/delete-marked-accounts',
'bin/backfix-generic-imap-separators.py',
'bin/backfix-duplicate-categories.py',
'bin/correct-autoincrements',
'bin/update-categories',
'bin/detect-missing-sync-host',
'bin/purge-transaction-log',
'bin/mysql-prompt',
'bin/toggle-s3-sync',
'bin/unschedule-account-syncs',
'bin/syncback-stats'
],
# See:
# https://pythonhosted.org/setuptools/setuptools.html#dynamic-discovery-of-services-and-plugins
# https://pythonhosted.org/setuptools/pkg_resources.html#entry-points
zip_safe=False,
author="Nylas Team",
author_email="[email protected]",
description="The Nylas Sync Engine",
license="AGPLv3",
keywords="nylas",
url="https://www.nylas.com",
)