Skip to content

Commit

Permalink
Adding make targets for clean and release. Adding long_description_co…
Browse files Browse the repository at this point in the history
…ntent_type
  • Loading branch information
eduardogr authored and egarcia committed Dec 9, 2020
1 parent aa249d0 commit 84a1d09
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,10 @@ init-virtual-env:

google-auth:
python3 google_auth.py

clean:
rm -rf build .pytest_cache dist google_drive.egg-info

release:
python3 setup.py sdist bdist_wheel && \
twine upload dist/*
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def read_requirements(path):

setup(
name="google-drive",
version="0.1.2",
version="0.1.3",
author="Eduardo Garcia",
author_email="[email protected]",
maintainer="Eduardo García",
Expand All @@ -39,6 +39,7 @@ def read_requirements(path):
'dev': extra_requirements_dev
},
long_description=read('README.md'),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries",
Expand Down

0 comments on commit 84a1d09

Please sign in to comment.