Skip to content
This repository has been archived by the owner on Aug 20, 2023. It is now read-only.

Commit

Permalink
added mailjet base project
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Jan 26, 2012
0 parents commit 3eceda1
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Introduction
============

`mailjet` is a library to access the Mailjet REST API.

* Mailjet
- http://www.mailjet.com/


Install
=======

To install simply execute `python setup.py install`.
If you want to run the tests first, run `python setup.py nosetests`


Usage
=====

>>> import mailjet

5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[nosetests]
verbosity=3
with-doctest=1
detailed-errors=1

25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import os
from setuptools import setup

if os.path.isfile('README.rst'):
long_description = open('README.rst').read()
else:
long_description = 'See http://pypi.python.org/pypi/mailjet/'

setup(
name = 'mailjet',
version = '1.5',
author = 'Rick van Hattem',
author_email = 'Rick.van.Hattem@Fawo.nl',
description = '''mailjet is a django app to implement the mailjet REST
API''',
url='https://github.com/WoLpH/mailjet',
license = 'BSD',
packages=['mailjet'],
long_description=long_description,
test_suite='nose.collector',
tests_require=['nose'],
classifiers=[
'License :: OSI Approved :: BSD License',
],
)

0 comments on commit 3eceda1

Please sign in to comment.