-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
52 lines (47 loc) · 1.33 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
41
42
43
44
45
46
47
48
49
50
51
52
"""
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/level12/flask-webtest/zipball/master#egg=Flask-WebTest-dev>`_
"""
import os.path as osp
from setuptools import setup
cdir = osp.abspath(osp.dirname(__file__))
version_fpath = osp.join(cdir, 'version.py')
version_globals = {}
with open(version_fpath) as fo:
exec(fo.read(), version_globals)
setup(
name='Flask-WebTest',
version=version_globals['VERSION'],
url='https://github.com/level12/flask-webtest',
license='BSD',
description = 'Utilities for testing Flask applications with WebTest.',
long_description=__doc__,
author='Anton Romanovich',
author_email='[email protected]',
include_package_data=True,
py_modules=['flask_webtest'],
zip_safe=False,
install_requires=[
'Flask>=1.1.0',
'WebTest',
'blinker',
],
extras_require={
'tests': [
'flask-sqlalchemy',
'greenlet',
],
},
classifiers=[
'Topic :: Software Development :: Testing',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
)