-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (28 loc) · 798 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
31
32
33
from setuptools import setup, find_packages
def readme():
with open('readme.md') as f:
return f.read()
setup(
name = 'sink',
version = '1.0.2',
description = "Sink is a CLI synchronisation app for Google Drive",
long_description = readme(),
author = 'Yash Thakre',
license = 'MIT',
packages = find_packages(),
entry_points = {
'console_scripts' : ['sink = src.main:cli']
},
install_requires = [
'click',
'termcolor',
'google-api-core==1.31.2',
'google-api-python-client==2.17.0',
'google-auth==1.35.0',
'google-auth-httplib2==0.1.0',
'google-auth-oauthlib==0.4.5',
'googleapis-common-protos==1.53.0',
'oauthlib==3.1.1'
],
include_package_data = True
)