-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
27 lines (26 loc) · 963 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
from distutils.core import setup
setup(
name='django-qunit',
version='0.1.1',
description='QUnit Javascript testing integration for Django.',
long_description=open('README.md').read(),
author='Cody Soyland',
author_email='[email protected]',
url='http://github.com/codysoyland/django-qunit/',
packages=[
'django_qunit',
],
package_data={
'django_qunit': ['templates/qunit/*', 'media/qunit/*'],
},
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: JavaScript',
'Topic :: Software Development :: Testing'],
)