mirror of https://github.com/databricks/cli.git
29 lines
787 B
Python
29 lines
787 B
Python
|
from setuptools import setup, find_packages
|
||
|
|
||
|
import sys
|
||
|
|
||
|
sys.path.append("./src")
|
||
|
|
||
|
import my_other_package
|
||
|
|
||
|
setup(
|
||
|
name="my_other_package",
|
||
|
version=my_other_package.__version__,
|
||
|
url="https://databricks.com",
|
||
|
author="[USERNAME]",
|
||
|
description="wheel file based on my_other_package/src",
|
||
|
packages=find_packages(where="./src"),
|
||
|
package_dir={"": "src"},
|
||
|
entry_points={
|
||
|
"packages": [
|
||
|
"main=my_other_package.main:main",
|
||
|
],
|
||
|
},
|
||
|
install_requires=[
|
||
|
# Dependencies in case the output wheel file is used as a library dependency.
|
||
|
# For defining dependencies, when this package is used in Databricks, see:
|
||
|
# https://docs.databricks.com/dev-tools/bundles/library-dependencies.html
|
||
|
"setuptools"
|
||
|
],
|
||
|
)
|