Skip to content

Instantly share code, notes, and snippets.

@scbedd
Created April 1, 2021 00:26
Show Gist options
  • Save scbedd/ab3ec3990bfc522d5ee330de526354b8 to your computer and use it in GitHub Desktop.
Save scbedd/ab3ec3990bfc522d5ee330de526354b8 to your computer and use it in GitHub Desktop.
Get Poetry Dependencies from entire repository
import glob
import os
packages = glob.glob('C:/repo/sdk-for-python/sdk/*/*/setup.py')
for pkg in packages:
name = os.path.dirname(pkg).split(os.sep)[-1]
path = os.path.dirname(pkg.split('python/')[1]).replace(os.sep, '/')
print('{} = {{path = "{}"}}'.format(name, path))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment