We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 107df3e commit e6c9b55Copy full SHA for e6c9b55
sendgrid/__init__.py
@@ -3,5 +3,5 @@
3
4
del sendgrid, message
5
6
-__version__ = "0.1.0"
7
-version_info = (0, 1, 0)
+__version__ = "0.1.3"
+version_info = (0, 1, 3)
setup.py
@@ -1,14 +1,13 @@
1
from setuptools import setup, find_packages
2
-
setup(
name='sendgrid',
- version='0.1.2',
+ version='0.1.3',
author='Kane Kim',
8
author_email='[email protected]',
9
packages=find_packages(),
10
url='https://github.com/sendgrid/sendgrid-python/',
11
license='LICENSE.txt',
12
- description='SendGrid client',
13
- long_description='SendGrid client',
+ description='SendGrid library for Python',
+ long_description='SendGrid library for Python',
14
)
0 commit comments