-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (33 loc) · 893 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
34
35
36
37
38
39
""" Google Drive Command Line Interface
Command-line tools to perform various operations on your google drive
"""
import os
from setuptools import setup
PACKAGE_NAME = "python3-gdrive-cli"
AUTHOR = "Chi Wai Chan"
EMAIL = "[email protected]"
VERSION = "1.0.dev0"
DOCLINES = __doc__.split("\n")
DESCRIPTION = DOCLINES[0]
LONG_DESCRIPTION = "\n".join(DOCLINES[2:])
if __name__ == "__main__":
setup(
name = PACKAGE_NAME,
author = AUTHOR,
author_email = EMAIL,
version = VERSION,
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
license = "MIT",
scripts = [
"bin/gdrive",
"bin/gdrive-auth",
"bin/gdrive-config"
],
packages = ["pydrivecli"],
install_requires = [
"tqdm",
"pyyaml",
"pydrive2"
]
)