diff --git a/.gitignore b/.gitignore index de3845a..08eae68 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ docs/_build *.py[co] +build dist *.egg-info diff --git a/CONTRIBUTORS b/CONTRIBUTORS new file mode 100644 index 0000000..5add688 --- /dev/null +++ b/CONTRIBUTORS @@ -0,0 +1,30 @@ +Jingo was originally written and maintained by Jeff Balogh and the +Mozilla Web Development team. It is currently maintained by James Socol. + +Maintainer: + +- James Socol + +Maintainer Emeritus: + +- Jeff Balogh + +Contributors: + +- auzigog +- berkerpeksag +- clouserw +- davedash +- dpoirier +- eviljeff +- fwenzel +- jerenept +- jlongster +- lmorchard +- magopian +- marklap +- mattdennewitz +- mccammos +- nvie +- Osmose +- robhudson diff --git a/setup.py b/setup.py index 09a2da0..b8e8547 100644 --- a/setup.py +++ b/setup.py @@ -6,8 +6,8 @@ setup( version='0.8', description='An adapter for using Jinja2 templates with Django.', long_description=open('README.rst').read(), - author='Jeff Balogh', - author_email='jbalogh@mozilla.com', + author='James Socol', + author_email='me@jamessocol.com', url='http://github.com/jbalogh/jingo', license='BSD', packages=['jingo'], @@ -17,18 +17,16 @@ setup( classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', - # I don't know what exactly this means, but why not? - 'Environment :: Web Environment :: Mozilla', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', 'Topic :: Software Development :: Libraries :: Python Modules', ] )