forked from mattrobenolt/proofread
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (31 loc) · 903 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·37 lines (31 loc) · 903 Bytes
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
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
"""
Proofread
=========
Test your web app without writing tests!
Compatible with Django. Flask coming soon.
:copyright: (c) 2013 by Matt Robenolt
:license: BSD, see LICENSE for more details.
"""
from setuptools import setup, find_packages
tests_require = ['Django']
setup(
name='proofread',
version='0.1.2',
author='Matt Robenolt',
author_email='matt@ydekproductions.com',
url='https://github.com/mattrobenolt/proofread',
description='Test your web app without writing tests!',
long_description=__doc__,
license='BSD',
packages=find_packages(),
zip_safe=False,
tests_require=tests_require,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)