forked from carter-j-h/iterable-python-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 677 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# from distutils.core import setup
from setuptools import setup
long_description = '''
Iterable Python is a Python client that wraps the Iterable Api.
Originally developed by Carter Hickingbotham. Current version is 1.2
'''
setup(
name='iterablepythonwrapper',
packages=['iterablepythonwrapper'],
url='https://github.com/carter-j-h/iterable-python-wrapper',
author='Carter Hickingbotham',
author_email='carterhickingbotham@gmail.com',
license= 'MIT',
version='1.2',
install_requires=['peppercorn==0.6'],
keywords = ['Iterable', 'API', 'Wrapper', 'Client', 'Python'],
description='Python Client for the Iterable API',
long_description=long_description
)