forked from jboutros/heap-analytics-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
m-vdb
committed
Jan 16, 2019
1 parent
b2207de
commit 4bb133a
Showing
2 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ It supports both the **track** and **identify** APIs. See [Heap documentation](h | |
Installation | ||
------------ | ||
``` | ||
pip install git+git://github.com/m-vdb/[email protected].2 | ||
pip install git+git://github.com/m-vdb/[email protected].3 | ||
``` | ||
|
||
Usage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
from setuptools import setup, find_packages | ||
|
||
|
||
VERSION = '0.0.2' | ||
VERSION = "0.0.3" | ||
|
||
|
||
setup( | ||
name='heapapi', | ||
name="heapapi", | ||
version=VERSION, | ||
description='Heap Analytics Python SDK (unofficial)', | ||
author='Maxime Vdb', | ||
author_email='[email protected]', | ||
description="Heap Analytics Python SDK (unofficial)", | ||
author="Maxime Vdb", | ||
author_email="[email protected]", | ||
packages=find_packages(), | ||
install_requires=['requests'], | ||
install_requires=["requests"], | ||
license="MIT", | ||
keywords="heap analytics api sdk", | ||
url='https://github.com/m-vdb/heap-analytics-python-client', | ||
download_url='https://github.com/m-vdb/heap-analytics-python-client/archive/v{}.tar.gz'.format(VERSION), | ||
project_urls={ | ||
"Source Code": "https://github.com/m-vdb/heap-analytics-python-client", | ||
} | ||
url="https://github.com/m-vdb/heap-analytics-python-client", | ||
download_url="https://github.com/m-vdb/heap-analytics-python-client/archive/v{}.tar.gz".format( | ||
VERSION | ||
), | ||
project_urls={"Source Code": "https://github.com/m-vdb/heap-analytics-python-client"}, | ||
) |
4bb133a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey, good attempt. I appreciate your efforts.
Issues are not by default enabled on forks. You might want to enable them.
Cheers and keep up the good work!