Skip to content

Commit

Permalink
Version Bump v3.6.4: #250 Improve code quality
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Mar 29, 2017
1 parent 4d34108 commit 629377e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,5 @@ venv/
.python-version
.tox/
profile*
register.py
README.txt
temp*.py
7 changes: 7 additions & 0 deletions register.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import pypandoc
import os

output = pypandoc.convert('README.md', 'rst')
f = open('README.txt','w+')
f.write(output)
f.close()
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def getRequires():
author='Elmer Thomas, Yamil Asusta',
author_email='dx@sendgrid.com',
url='https://github.com/sendgrid/sendgrid-python/',
packages=find_packages(exclude=["temp*.py"]),
packages=find_packages(exclude=["temp*.py", "register.py"]),
include_package_data=True,
license='MIT',
description='SendGrid library for Python',
Expand Down

0 comments on commit 629377e

Please sign in to comment.