10000 minor tweaks to readme, setup.py · stomatocode/twilio-python@d479a10 · GitHub
[go: up one dir, main page]

Skip to content

Commit d479a10

Browse files
author
Kevin Burke
committed
minor tweaks to readme, setup.py
1 parent 748dcec commit d479a10

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Python library documentation")
1313
Install from PyPi using [pip](http://www.pip-installer.org/en/latest/), a
1414
package manager for Python.
1515

16-
$ pip install twilio
16+
pip install twilio
1717

1818
Don't have pip installed? Try installing it, by running this from the command
1919
line:
@@ -24,7 +24,7 @@ Or, you can [download the source code
2424
(ZIP)](https://github.com/twilio/twilio-python/zipball/master "twilio-python
2525
source code") for `twilio-python`, and then run:
2626

27-
$ python setup.py install
27+
python setup.py install
2828

2929
You may need to run the above commands with `sudo`.
3030

docs/_themes/kr_small/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
{% block relbar1 %}{% endblock %}
1515
{% block relbar2 %}
1616
{% if theme_github_fork %}
17-
<a href="http://github.com/{{ theme_github_fork }}"><img style="position: fixed; top: 0; right: 0; border: 0;"
17+
<a href="https://github.com/{{ theme_github_fork }}"><img style="position: fixed; top: 0; right: 0; border: 0;"
1818
src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
1919
{% endif %}
2020
{% endblock %}

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,14 @@
1616
if sys.version_info >= (3,0):
1717
REQUIRES.append('unittest2py3k')
1818
REQUIRES.append('socksipy-branch')
19-
else:
20-
REQUIRES.append('unittest2')
2119

2220
setup(
2321
name = "twilio",
2422
version = __version__,
2523
description = "Twilio API client and TwiML generator",
2624
author = "Twilio",
2725
author_email = "help@twilio.com",
28-
url = "http://github.com/twilio/twilio-python/",
26+
url = "https://github.com/twilio/twilio-python/",
2927
keywords = ["twilio","twiml"],
3028
install_requires = REQUIRES,
3129
packages = find_packages(),
@@ -51,7 +49,7 @@
5149
DESCRIPTION
5250
The Twilio REST SDK simplifies the process of making calls using the Twilio REST API.
5351
The Twilio REST API lets to you initiate outgoing calls, list previous calls,
54-
and much more. See http://www.github.com/twilio/twilio-python for more information.
52+
and much more. See https://www.github.com/twilio/twilio-python for more information.
5553
5654
LICENSE The Twilio Python Helper Library is distributed under the MIT
5755
License """ )

0 commit comments

Comments
 (0)
0