forked from eCommerceCosmos/python-klaviyo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 713 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/python
from setuptools import setup, find_packages
setup(
name = 'klaviyo',
version = '1.0.0',
packages = find_packages(),
install_requires=[
'requests >= 2.2.1',
],
# metadata for upload to PyPI
author = 'Klaviyo',
author_email = 'support@klaviyo.com',
description = "Python API for Klaviyo",
long_description = (
"""
Klaviyo is a real-time service for understanding your customers by aggregating
all your customer data, identifying important groups of customers
and then taking action.
Find out more at http://www.klaviyo.com
"""
),
license = 'MIT License',
keywords = 'klaviyo',
url = 'http://github.com/klaviyo/python-klaviyo',
)