databricks-cli/python/testdata/simple-python-wheel/setup.py

9 lines
193 B
Python
Raw Permalink Normal View History

2022-05-20 18:42:53 +00:00
from setuptools import setup, find_packages
setup(
name='dummy',
version='0.0.1',
packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=['requests==2.31.1']
2022-05-20 18:42:53 +00:00
)