mirror of https://github.com/databricks/cli.git
9 lines
175 B
Python
9 lines
175 B
Python
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name='dummy',
|
||
|
version='0.0.1',
|
||
|
packages=find_packages(exclude=['tests', 'tests.*']),
|
||
|
install_requires=[]
|
||
|
)
|