Skip to content

Commit

Permalink
Adding jinja2 dependency in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sripathikrishnan committed Oct 24, 2016
1 parent 4bcb37a commit 96cf70d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
*.pyc
build/
dist/
jinja2sql.egg-info/
jinjasql.egg-info/
venv
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
import os
from rdbtools import __version__
from jinjasql import __version__

long_description = '''
Generate SQL Queries using a Jinja2 Template.
Expand All @@ -24,6 +24,9 @@
'license' : 'MIT',
'packages' : ['jinjasql'],
'test_suite' : 'tests.all_tests',
'install_requires': [
'Jinja2>=2.5'
],
'classifiers' : [
'Development Status :: 4 - Beta',
'Environment :: Console',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_jinjasql.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
from jinja2sql import JinjaSql
from jinjasql import JinjaSql

_DATA = {
"etc": {
Expand Down

0 comments on commit 96cf70d

Please sign in to comment.