Skip to content

Commit

Permalink
Initial PyPi Release
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlovelltroy committed Feb 19, 2014
1 parent 4be26ce commit 01d3364
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v0.1.0, Feb 17th 2014 -- Initial release.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include *.md
include *.rst
include *.txt
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
from distutils.core import setup

setup(
name='django-classy-mail',
version='0.1.0',
author='Alex Lovell-Troy',
author_email='alex@lovelltroy.org',
description='Class-Based Email for Django built with Mixins',
packages=['classy_mail', 'classy_mail.mixins', 'classy_mail.migrations'],
url='https://github.com/alexlovelltroy/django-classy-mail',
license='LICENSE.txt',
long_description=open('README.md').read(),
install_requires=[
"Django >= 1.5",
"markdown >= 2.4",
"BeautifulSoup >= 3.2",
"South >= 0.8",
"PyYAML >= 3.10",
],
)

0 comments on commit 01d3364

Please # to comment.