We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d34108 commit 629377eCopy full SHA for 629377e
3 files changed
.gitignore
@@ -14,6 +14,5 @@ venv/
14
.python-version
15
.tox/
16
profile*
17
-register.py
18
README.txt
19
temp*.py
register.py
@@ -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
@@ -25,7 +25,7 @@ def getRequires():
25
author='Elmer Thomas, Yamil Asusta',
26
author_email='dx@sendgrid.com',
27
url='https://github.com/sendgrid/sendgrid-python/',
28
- packages=find_packages(exclude=["temp*.py"]),
+ packages=find_packages(exclude=["temp*.py", "register.py"]),
29
include_package_data=True,
30
license='MIT',
31
description='SendGrid library for Python',
0 commit comments