Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds files for Python packaging #10

Merged
merged 1 commit into from Jul 9, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Expand Up @@ -2,3 +2,10 @@
*.pyc
config.ini
.DS_Store
*.py[cod]
*.egg
*.egg-info
dist
build
eggs

2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include LICENSE.txt
include README.md
34 changes: 34 additions & 0 deletions setup.py
@@ -0,0 +1,34 @@
from setuptools import setup

setup(
name = "IronMQ",
py_modules = ["iron_mq"],
version = "0.3",
description = "Client library for IronMQ, a message queue in the cloud",
author = "Iron.io",
author_email = "thirdparty@iron.io",
url = "https://github.com/iron-io/iron_mq_python",
keywords = ["Iron.io", "IronMQ", "message", "queue", "MQ"],
test_suite='test',
classifiers = [
"Programming Language :: Python",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = """\
IronMQ client library
---------------------

This package wraps the IronMQ API. It provides a simple and intuitive way
to interact with the IronMW service.

IronMQ is a service provided by Iron.io. A flexible, scalable,
and durable messaging system lets different parts of a cloud app
connect with and scale independently from other internal and external
processes. IronMQ offers developers ready-to-use messaging with reliable
delivery and cloud-optimized performance."""
)