xref: /aosp_15_r20/external/pytorch/tools/coverage_plugins_package/setup.py (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1import setuptools  # type: ignore[import]
2
3
4with open("README.md", encoding="utf-8") as fh:
5    long_description = fh.read()
6
7setuptools.setup(
8    name="coverage-plugins",
9    version="0.0.1",
10    author="PyTorch Team",
11    author_email="[email protected]",
12    description="plug-in to coverage for PyTorch JIT",
13    long_description=long_description,
14    long_description_content_type="text/markdown",
15    url="https://github.com/pytorch/pytorch",
16    project_urls={
17        "Bug Tracker": "https://github.com/pytorch/pytorch/issues",
18    },
19    classifiers=[
20        "Programming Language :: Python :: 3",
21        "License :: OSI Approved :: MIT License",
22        "Operating System :: OS Independent",
23    ],
24    package_dir={"": "src"},
25    packages=setuptools.find_packages(where="src"),
26    python_requires=">=3.6",
27)
28