Skip to content

Commit

Permalink
Updating links and email addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
sripathikrishnan committed Dec 30, 2021
1 parent d7fdc7a commit d1e0d0f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1 +1 @@
See https://github.com/hashedin/jinjasql/releases
See https://github.com/sripathikrishnan/jinjasql/releases
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Please use
python setup.py install

To report errors, create a new issue on Github - https://github.com/hashedin/jinjasql/issues
To report errors, create a new issue on Github - https://github.com/sripathikrishnan/jinjasql/issues

1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License

Copyright (c) 2016 HashedIn Technologies Pvt. Ltd.
Copyright (c) 2021 Sripathi Krishnan

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Generate SQL Queries using a Jinja Template, without worrying about SQL Injection #

[![Travis Build Status](https://travis-ci.org/hashedin/jinjasql.svg?branch=master)](https://travis-ci.org/hashedin/jinjasql) [![Github Actions Build Status](https://github.com/hashedin/jinjasql/workflows/Tests/badge.svg)](https://github.com/hashedin/jinjasql/actions)
[![Github Actions Build Status](https://github.com/sripathikrishnan/jinjasql/workflows/Tests/badge.svg)](https://github.com/sripathikrishnan/jinjasql/actions)

JinjaSQL is a template language for SQL statements and scripts.
Since it's based in [Jinja2](http://jinja.pocoo.org/),
Expand Down Expand Up @@ -198,7 +198,7 @@ To install from PyPI (recommended) :

To install from source :

git clone https://github.com/hashedin/jinjasql
git clone https://github.com/sripathikrishnan/jinjasql
cd jinjasql
sudo python setup.py install

Expand Down Expand Up @@ -241,11 +241,7 @@ JinjaSQL builds on this functionality. JinjaSQL requires autoescape to be turned

## License

jinjasql is licensed under the MIT License. See [LICENSE](https://github.com/hashedin/jinjasql/blob/master/LICENSE)

## Copyright

(c) 2020 HashedIn Technologies Pvt. Ltd.
jinjasql is licensed under the MIT License. See [LICENSE](https://github.com/sripathikrishnan/jinjasql/blob/master/LICENSE)


## Developer Notes
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@
'version' : __version__,
'description' : 'Generate SQL Queries and Corresponding Bind Parameters using a Jinja2 Template',
'long_description' : long_description,
'url': 'https://github.com/hashedin/jinjasql',
'download_url' : 'http://cloud.github.com/downloads/hashedin/jinjasql/jinjasql-%s.tar.gz' % __version__,
'url': 'https://github.com/sripathikrishnan/jinjasql',
'download_url' : 'http://cloud.github.com/downloads/sripathikrishnan/jinjasql/jinjasql-%s.tar.gz' % __version__,
'author' : 'Sripathi Krishnan',
'author_email' : 'Sripathi@hashedin.com',
'author_email' : 'Sripathi.Krishnan@gmail.com',
'maintainer' : 'Sripathi Krishnan',
'maintainer_email' : 'Sripathi@hashedin.com',
'maintainer_email' : 'Sripathi.Krishnan@gmail.com',
'keywords' : ['Jinja2', 'SQL', 'Python', 'Template'],
'license' : 'MIT',
'packages' : ['jinjasql'],
'test_suite' : 'tests.all_tests',
'install_requires': [
'Jinja2>=2.5'
'Jinja2>=2.5,<3.0'
],
'classifiers' : [
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit d1e0d0f

Please sign in to comment.