Skip to content

Commit

Permalink
bump to 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
m-vdb committed Jan 16, 2019
1 parent b2207de commit 4bb133a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
22 changes: 11 additions & 11 deletions setup.py
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"},
)

1 comment on commit 4bb133a

@barseghyanartur
Copy link

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!

Please sign in to comment.