Skip to content

Commit

Permalink
Upgrading google-drive package to 0.3.3. Fixing reading README for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardogr committed Mar 29, 2022
1 parent 93dc80f commit 6e2bc45
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
this_directory = pathlib.Path(__file__).parent
long_description = (this_directory / fname).read_text()
return long_description


def read_requirements(path):
Expand All @@ -24,9 +26,9 @@ def read_requirements(path):

setup(
name="google-drive",
version="0.3.2",
version="0.3.3",
author="Eduardo Garcia",
author_email="[email protected]",
author_email="garciaruiz.edu+maintain+[email protected]",
maintainer="Eduardo García",
maintainer_email="[email protected]",
description=("Library and cli to manage and interact with your Google Drive"),
Expand All @@ -38,10 +40,10 @@ def read_requirements(path):
extras_require={
'dev': extra_requirements_dev
},
long_description=read('README.md'),
long_description_content_type="text/markdown",
long_description=read("README.md"),
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: Apache Software License",
],
Expand Down

0 comments on commit 6e2bc45

Please sign in to comment.