github.com/databricks/cli@v0.203.0/bundle/artifacts/whl/testdata/setup.py (about)

     1  from setuptools import setup, find_packages
     2  
     3  import my_test_code
     4  
     5  setup(
     6      name="my_test_code",
     7      version=my_test_code.__version__,
     8      author=my_test_code.__author__,
     9      url="https://databricks.com",
    10      author_email="john.doe@databricks.com",
    11      description="my test wheel",
    12      packages=find_packages(include=["my_test_code"]),
    13      entry_points={"group_1": "run=my_test_code.__main__:main"},
    14      install_requires=["setuptools"],
    15  )