Attribution cleanup

This commit is contained in:
James Socol 2015-10-20 08:59:16 -04:00
parent c66b9529bf
commit d6274a467b
3 changed files with 34 additions and 5 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
docs/_build
*.py[co]
build
dist
*.egg-info

30
CONTRIBUTORS Normal file
View File

@ -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 <me@jamessocol.com>
Maintainer Emeritus:
- Jeff Balogh
Contributors:
- auzigog
- berkerpeksag
- clouserw
- davedash
- dpoirier
- eviljeff
- fwenzel
- jerenept
- jlongster
- lmorchard
- magopian
- marklap
- mattdennewitz
- mccammos
- nvie
- Osmose
- robhudson

View File

@ -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',
]
)