forked from bfirsh/pytest_django
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 717 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='pytest_django',
version='0.1',
description='A Django plugin for py.test.',
author='Ben Firshman',
author_email='ben@firshman.co.uk',
url='http://github.com/bfirsh/pytest_django/',
packages=[
'pytest_django',
],
classifiers=['Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Testing'],
)