Skip to content

Commit

Permalink
adding version and README to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
perenecabuto committed Apr 16, 2013
1 parent e835aa7 commit a23cf87
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.md
3 changes: 3 additions & 0 deletions django_sendmail_backend/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-

__version__ = "0.1.1"
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages
import os
from setuptools import setup, find_packages

import django_sendmail_backend


PROJECT_DIR = os.path.dirname(__file__)

setup(
name='django_sendmail_backend',
version='0.1.0',
version=django_sendmail_backend.__version__,
url='https://github.com/perenecabuto/django-sendmail-backend.git',
author="Felipe Ramos",
author_email="[email protected]",
Expand Down

0 comments on commit a23cf87

Please sign in to comment.