forked from GaretJax/coffin
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update requirements. Should be using Django 1.2 (dev) now.
- Loading branch information
David Cramer
authored and
David Cramer
committed
Jan 26, 2010
1 parent
32ab9fe
commit 8949dba
Showing
2 changed files
with
4 additions
and
4 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,2 @@ | ||
-e svn+http://code.djangoproject.com/svn/django/trunk#egg=django | ||
Jinja2 |
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,18 +1,16 @@ | ||
import os | ||
from setuptools import setup, find_packages | ||
|
||
import coffin | ||
|
||
setup(name='Coffin', | ||
version='.'.join(map(str, coffin.__version__)), | ||
version=".".join(map(str, __import__("coffin").__version__)), | ||
description='Jinja2 adapter for Django', | ||
author='Christopher D. Leary', | ||
author_email='[email protected]', | ||
maintainer='David Cramer', | ||
maintainer_email='[email protected]', | ||
url='http://github.com/dcramer/coffin', | ||
packages=find_packages(), | ||
install_requires=['Jinja2', 'django>=1.0'], | ||
#install_requires=['Jinja2', 'django>=1.2'], | ||
classifiers=[ | ||
"Framework :: Django", | ||
"Intended Audience :: Developers", | ||
|