forked from perenecabuto/django-sendmail-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding version and README to setup.py
- Loading branch information
1 parent
e835aa7
commit a23cf87
Showing
3 changed files
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
__version__ = "0.1.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]", | ||
|