Skip to content

Commit

Permalink
inline modules and packages
Browse files Browse the repository at this point in the history
  • Loading branch information
ccwienk committed Oct 11, 2024
1 parent 24afccb commit 24cb7f8
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ def requirements():
yield f'gardener-cicd-libs=={version()}'


def modules():
return []


def version():
with open(os.path.join(own_dir, 'gardener_ci', 'VERSION')) as f:
return f.read().strip()
Expand All @@ -31,8 +27,8 @@ def version():
long_description='Gardener CI/CD Command Line Interface',
long_description_content_type='text/markdown',
python_requires='>=3.11',
py_modules=modules(),
packages=setuptools.find_packages(),
py_modules=[],
packages=['gardener_ci'],
package_data={
'gardener_ci': ['VERSION'],
},
Expand Down

0 comments on commit 24cb7f8

Please sign in to comment.