We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e7d260 commit d7f0233Copy full SHA for d7f0233
3 files changed
INSTALL.md
@@ -0,0 +1,12 @@
1
+# Installing python-intercom
2
+
3
+## pip
4
5
+ pip install python-intercom
6
7
+## source
8
9
+ wget http://pypi.python.org/packages/source/p/python-intercom/python-intercom-0.2.0.tar.gz
10
+ tar xf python-intercom-0.2.0.tar.gz
11
+ cd python-intercom-0.2.0
12
+ python setup.py install
MANIFEST.in
@@ -1,5 +1,6 @@
-include LICENSE.md
include CHANGES.md
+include INSTALL.md
+include LICENSE.md
include README.md
recursive-include docs *.rst
recursive-exclude docs/_build *
setup.py
@@ -8,7 +8,7 @@
from setuptools import setup
setup(name="python-intercom",
- version='0.1',
+ version='0.2.0',
description="Intercom API wrapper",
13
long_description=open('README.md').read(),
14
author="John Keyes",
0 commit comments