forked from iron-io/iron_worker_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (19 loc) · 848 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
required = ["poster"]
setup(
name='iron-worker',
version='0.0.12',
description='The Python client for IronWorker, a cloud service for background processing.',
long_description='IronWorker is a background processing and task queuing system that lets your applications use the cloud to do their heavy lifting. This is the Python library to interface with the API.',
keywords=['iron', 'ironio', 'iron.io', 'iron-io', 'ironworker', 'iron-worker', 'iron_worker', 'worker', 'cloud', 'task queue', 'background processing'],
author='Iron.io',
author_email="[email protected]",
url='http://iron.io/products/worker',
install_requires=required,
packages=[ 'iron_worker' ],
)