-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 976 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 976 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
from pathlib import Path
from setuptools import setup
setup(
name='pytest-assert-screenshot',
version='1.0.0.dev3',
author='Dmitry Vorobjev',
author_email='dmitry.vorobjev@gmail.com',
description='A pytest fixture for visual testing',
long_description=Path('README.md').read_text(),
long_description_content_type='text/markdown',
url='https://github.com/',
packages=['pytest_assert_screenshot'],
include_package_data=True,
install_requires=[
'Pillow>=8.2.0',
'pixelmatch>=0.3.0',
],
entry_points={'pytest11': ['pytest_assert_screenshot = pytest_assert_screenshot.plugin']},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Framework :: Pytest',
],
python_requires='>=3.11',
setup_requires=['setuptools_scm'],
)