--- c/setup.py 1970-01-01 08:00:00.000000000 +0800 +++ a/setup.py 2022-12-06 09:22:10.203917839 +0800 @@ -0,0 +1,14 @@ +#!/usr/bin/env python + +try: + from setuptools import setup +except ImportError: + from distutils.core import setup + + +setup( + name="tabulate", + version="0.9.0", + py_modules=["tabulate"], + entry_points={"console_scripts": ["tabulate = tabulate:_main"]} +)