setup.py (49 lines of code) (raw):

#!/usr/bin/env python3 # Copyright © Meta Platforms, Inc. and affiliates # coding=utf8 # pyre-ignore-all-errors # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. from pathlib import Path from setuptools import setup # Specific Python Test Runner (ptr) params for Unit Testing Enforcement ptr_params = { # Disable auto running if found - Requires --run-disabled to run "disabled": True, # Where mypy will run to type check your program "entry_point_module": "ptr", # Base Unittest File "test_suite": "ptr_tests", "test_suite_timeout": 120, # Relative path from setup.py to module (e.g. ptr == ptr.py) "required_coverage": {"ptr.py": 85.0, "TOTAL": 89}, # Run usort or not "run_usort": True, # Run black or not "run_black": True, # Run mypy or not "run_mypy": True, # Run flake8 or not "run_flake8": True, # Run pylint or not - Disabled until 3.9 Support "run_pylint": True, # Run pyre or not "run_pyre": True, } def get_long_desc() -> str: repo_base = Path(__file__).parent long_desc = "" for info_file in (repo_base / "README.md", repo_base / "CHANGES.md"): with info_file.open("r", encoding="utf8") as ifp: long_desc += ifp.read() long_desc += "\n\n" return long_desc setup( name=ptr_params["entry_point_module"], version="22.2.2", description="Parallel asyncio Python setup.(cfg|py) Test Runner", long_description=get_long_desc(), long_description_content_type="text/markdown", py_modules=["ptr"], url="http://github.com/facebookincubator/ptr", author="Cooper Lees", author_email="me@cooperlees.com", license="MIT", classifiers=[ "Development Status :: 3 - Alpha", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", ], python_requires=">=3.7", install_requires=None, entry_points={"console_scripts": ["ptr = ptr:main"]}, test_suite=ptr_params["test_suite"], )