From f7b82180b4443f0873852d0a306dd22444eaac67 Mon Sep 17 00:00:00 2001 From: Zhilevan Date: Tue, 3 Jul 2018 10:39:01 +0430 Subject: [PATCH] Feat: add Setup --- setup.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..5d3a481 --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ + +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name='pylocalytics', + url='https://github.com/zhilevan/pylocalytics', + author='Zhilevan Ibra', + author_email='zhilevan@gmail.com', + packages = ['pylocalytics'], + long_description=long_description, + long_description_content_type="text/markdown", + version='1.0', + license='MIT', + description='Python API Client for Localytics Raw Data Export and Audience Export' +)