8000 Include the CA Cert when packaging python · Stackdriver/twilio-python@7243b54 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Feb 1, 2018. It is now read-only.

Commit 7243b54

Browse files
author
Kevin Burke
committed
Include the CA Cert when packaging python
1 parent b7ed126 commit 7243b54

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Include the SSL certificate file in the package distributed by pip
2+
recursive-include twilio/conf *

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# The short X.Y version.
5858
version = '3.5'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '3.5.3'
60+
release = '3.5.4'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
keywords = ["twilio","twiml"],
2929
install_requires = REQUIRES,
3030
packages = find_packages(),
31+
include_package_data=True,
3132
classifiers = [
3233
"Development Status :: 5 - Production/Stable",
3334
"Intended Audience :: Developers",
@@ -38,6 +39,7 @@
3839
"Programming Language :: Python :: 2.6",
3940
"Programming Language :: Python :: 2.7",
4041
"Programming Language :: Python :: 3.2",
42+
"Programming Language :: Python :: 3.3",
4143
"Topic :: Software Development :: Libraries :: Python Modules",
4244
"Topic :: Communications :: Telephony",
4345
],

twilio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version_info__ = ('3', '5', '3')
1+
__version_info__ = ('3', '5', '4')
22
__version__ = '.'.join(__version_info__)
33

44

0 commit comments

Comments
 (0)
0