Skip to content

Commit 629377e

Browse files
Version Bump v3.6.4: #250 Improve code quality
1 parent 4d34108 commit 629377e

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,5 @@ venv/
1414
.python-version
1515
.tox/
1616
profile*
17-
register.py
1817
README.txt
1918
temp*.py

register.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import pypandoc
2+
import os
3+
4+
output = pypandoc.convert('README.md', 'rst')
5+
f = open('README.txt','w+')
6+
f.write(output)
7+
f.close()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def getRequires():
2525
author='Elmer Thomas, Yamil Asusta',
2626
author_email='[email protected]',
2727
url='https://github.com/sendgrid/sendgrid-python/',
28-
packages=find_packages(exclude=["temp*.py"]),
28+
packages=find_packages(exclude=["temp*.py", "register.py"]),
2929
include_package_data=True,
3030
license='MIT',
3131
description='SendGrid library for Python',

0 commit comments

Comments
 (0)