forked from etesync/etesync-dav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 810 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
exec(open('etesync_dav/_version.py').read())
setup(
name='etesync-dav',
version=__version__,
author='Tom Hacohen',
author_email='[email protected]',
url='https://github.com/etesync/etesync-dav',
description='A CalDAV and CardDAV frontend for EteSync',
keywords=['etesync', 'encryption', 'sync', 'pim', 'caldav', 'carddav'],
license='GPL-3.0-only',
long_description=open('DESCRIPTION.rst').read(),
packages=find_packages(),
scripts=[
'scripts/etesync-dav',
],
include_package_data=True,
install_requires=[
'appdirs>=1.4.3',
'etesync>=0.11.1',
'Radicale==3.0.3',
'Flask>=1.1.1',
'Flask-WTF>=0.14.2',
'requests[socks]>=2.21',
]
)