-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 950 Bytes
/
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
from setuptools import setup
from pathlib import Path
this_dir = Path(__file__).parent
long_desc = (this_dir / 'README.md').read_text()
setup(
name='pytest-assertcount',
version='0.0.3',
description='Plugin to count actual number of asserts in pytest',
long_description=long_desc,
long_description_content_type='text/markdown',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing',
'Framework :: Pytest',
],
keywords='pytest,plugin,assert',
author='Roman Joeres',
license='MIT',
author_email='romanjoeres@gmail.com',
py_modules=['pytest_assertcount'],
url='https://github.com/Old-Shatterhand/pytest-assertcount',
platforms='any',
python_requires='>=3.0',
install_requires=[
'pytest>=5.0.0',
],
entry_points={
'pytest11': ['toolbox = pytest_assertcount'],
},
)