-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
42 lines (39 loc) · 1.22 KB
/
setup.cfg
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
[metadata]
name = pytest_pytorch
platforms = any
description = pytest plugin for a better developer experience when working with the PyTorch test suite
long_description = file: README.md
long_description_content_type = text/markdown
keywords = pytest, plugin, pytorch, torch
url = https://github.com/Quansight/pytest-pytorch
author = Philip Meier
author_email = [email protected]
license = BSD-3-Clause
classifiers =
Development Status :: 4 - Beta
Framework :: Pytest
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Testing
project_urls =
Source = https://github.com/Quansight/pytest-pytorch
Documentation = https://github.com/Quansight/pytest-pytorch
Tracker = https://github.com/Quansight/pytest-pytorch/issues
[options]
packages = find:
include_package_data = True
python_requires = >=3.6
install_requires =
pytest
[options.packages.find]
exclude =
tests
tests.*
[options.entry_points]
pytest11 =
pytest_pytorch=pytest_pytorch.plugin