-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (23 loc) · 816 Bytes
/
setup.py
File metadata and controls
29 lines (23 loc) · 816 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
README_DESCRIPTION = fh.read()
setup(
name='driveup',
version='0.9.18',
author='Raúl M.R.',
author_email="raul.martin4bc@gmail.com",
url="https://github.com/raul-martin-dev/Driveup",
license="MIT",
description='Python package for uploading files and folders to Google Drive.',
long_description=README_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(where=".", exclude=["tests", "tests.*", "static", "static.*"]),
include_package_data=True,
install_requires=[
'google-api-python-client>=2.0.0',
'pandas>=1.0.0',
'google-auth-oauthlib>=0.8.0',
'tqdm'
],
python_requires='>3.7',
)