forked from level12/flask-webtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (35 loc) · 1.01 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
"""
Flask-WebTest
-------------
Provides a set of utilities to ease testing Flask applications with WebTest.
Links
`````
* `documentation <http://flask-webtest.readthedocs.org/en/latest/>`_
* `development version
<http://github.com/aromanovich/flask-webtest/zipball/master#egg=Flask-WebTest-dev>`_
"""
from setuptools import setup
setup(
name='Flask-WebTest',
version='0.0.7',
url='https://github.com/aromanovich/flask-webtest',
license='BSD',
description = 'Utilities for testing Flask applications with WebTest.',
long_description=__doc__,
author='Anton Romanovich',
author_email='[email protected]',
py_modules=['flask_webtest'],
test_suite='tests.test',
tests_require=['Flask-SQLAlchemy'],
zip_safe=False,
install_requires=[
'Flask>=0.8',
'WebTest',
'blinker',
],
classifiers=[
'Topic :: Software Development :: Testing',
'Environment :: Web Environment',
'Intended Audience :: Developers',
],
)