-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
41 lines (39 loc) · 1.26 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
from setuptools import setup, find_packages
from os import path
# Read the contents of the README into the long_description field.
current_directory = path.abspath(path.dirname(__file__))
with open(path.join(current_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='zoom-drive-connector',
version='1.7',
packages=find_packages(exclude=['tests']),
url='https://github.com/minds-ai/zoom-drive-connector',
license='Apache 2.0',
author='Nick Pleatsikas, Jeroen Bédorf',
author_email='[email protected], [email protected]',
# Package description.
description='Automatically copies recordings from Zoom to Google Drive.',
long_description=long_description,
long_description_content_type='text/markdown',
# Package requirements.
install_requires=[
'pyyaml>=5.1',
'slackclient==1.2.1',
'schedule==0.5.0',
'google-api-python-client==2.10.0',
'google-auth-httplib2==0.1.0',
'google-auth-oauthlib==0.4.4',
],
python_requires='>=3.5, <4',
# Development requirements.
extras_require={
'test': ['tox', 'mypy', 'pylint', 'pycodestyle', 'responses']
},
# Application entrypoint.
entry_points={
'console_scripts': [
'zoom-drive-connector=zoom_drive_connector:__main__.main'
]
}
)