updates setup with new requirements

This commit is contained in:
Raphael Maenle 2022-01-15 14:27:37 +01:00
parent c8ce01277b
commit 1e7301d919
2 changed files with 4 additions and 2 deletions

View File

@ -86,7 +86,6 @@ class Bump:
self.secrets.append(secret) self.secrets.append(secret)
ipdb.set_trace()
if not os.path.exists(os.path.dirname(secrets_file)): if not os.path.exists(os.path.dirname(secrets_file)):
os.makedirs(os.path.dirname(secrets_file)) os.makedirs(os.path.dirname(secrets_file))

View File

@ -11,9 +11,12 @@ setup(
keywords=['pip','maenle','bump','notify','phone'], keywords=['pip','maenle','bump','notify','phone'],
license='MIT', license='MIT',
install_requires=[ install_requires=[
'wheel',
'requests', 'requests',
'pybase64', 'pybase64',
'qrcode', 'qrcode',
'random-word' 'pyyaml',
'random-word',
'cryptography'
] ]
) )