-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
18 lines (15 loc) · 742 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""Set up file for pytest plugin"""
#!/usr/bin/env python3
from setuptools import setup
setup(
name='runtime_and_report',
version='0.0.1',
description='A pytest plugin to determine runtimes of pytests and also report the pytest results to a .csv file.',
url='https://github.com/allegheny-computer-science-203-s2021/pytest-runtime-and-report',
author='Zack Devers, Wesley Long, Peter Snipes, Abigail Waryanka, Kai lani Woodard',
author_email='[email protected],[email protected], [email protected], [email protected], [email protected]',
license='MIT',
py_modules=['plugin'],
install_requires=['pytest'],
entry_points={'pytest11': ['pytest-plugin = pytestplugin.plugin', ], },
)