-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 919 Bytes
/
setup.py
File metadata and controls
36 lines (34 loc) · 919 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
31
32
33
34
35
36
"""Setup script for jmu_pytest_utils."""
from setuptools import setup, find_packages
setup(
name="jmu_pytest_utils",
version="1.7.2",
description="pytest plugin for Gradescope autograders",
author="Chris Mayfield",
author_email="mayfiecs@jmu.edu",
url="https://github.com/JMU-CS/jmu_pytest_utils",
packages=find_packages(),
classifiers=[
"Framework :: Pytest",
],
license="MIT",
package_data={"jmu_pytest_utils": ["template/*"]},
install_requires=[
"darglint",
"flake8-docstrings",
"pep8-naming",
"pytest-cov",
"pytest-timeout",
"pytz",
"ruff",
],
entry_points={
"console_scripts": [
"jmu_pytest_utils = jmu_pytest_utils.builder:main",
],
"pytest11": [
"jmu_pytest_utils = jmu_pytest_utils.plugin",
],
},
python_requires=">=3.10",
)