forked from jboutros/heap-analytics-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 635 Bytes
/
setup.py
File metadata and controls
22 lines (18 loc) · 635 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
VERSION = "0.0.3"
setup(
name="heapapi",
version=VERSION,
description="Heap Analytics Python SDK (unofficial)",
author="Maxime Vdb",
author_email="me@maxvdb.com",
packages=find_packages(),
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"},
)