-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
43 lines (39 loc) · 1.45 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='pytest-flask-sqlalchemy',
author='Jean Cochrane',
author_email='[email protected]',
url='https://github.com/jeancochrane/pytest-flask-sqlalchemy',
description='A pytest plugin for preserving test isolation in Flask-SQlAlchemy using database transactions.',
long_description=readme(),
long_description_content_type='text/markdown',
license='MIT',
version='1.1.0',
packages=['pytest_flask_sqlalchemy'],
install_requires=['pytest>=3.2.1',
'pytest-mock>=1.6.2',
'SQLAlchemy>=1.2.2',
'Flask-SQLAlchemy>=2.3',
'packaging>=14.1'],
extras_require={'tests': ['pytest-postgresql>=2.4.0,<4.0.0', 'psycopg2-binary', 'pytest>=6.0.1']},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Pytest',
],
# Make the package available to pytest
entry_points={
'pytest11': [
'pytest-flask-sqlalchemy = pytest_flask_sqlalchemy.plugin',
]
},
)