adds required setup packages
This commit is contained in:
parent
b18854d3a5
commit
c8ce01277b
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,5 @@
|
||||
*__pycache__/*
|
||||
*/__pycache__/*
|
||||
.bump*
|
||||
*.tar.gz
|
||||
*.egg-info/*
|
||||
|
@ -1,5 +1,4 @@
|
||||
import time
|
||||
import ipdb
|
||||
import json
|
||||
import random
|
||||
import qrcode
|
||||
@ -7,12 +6,11 @@ import requests
|
||||
import base64
|
||||
import re
|
||||
import os
|
||||
|
||||
from random_word import RandomWords
|
||||
|
||||
SENDER_LENGTH = 4
|
||||
PASSWORD_LENGTH = 8
|
||||
|
||||
from random_word import RandomWords
|
||||
|
||||
import secrets
|
||||
from base64 import urlsafe_b64encode as b64e, urlsafe_b64decode as b64d
|
||||
@ -97,7 +95,7 @@ class Bump:
|
||||
|
||||
|
||||
def show_secret(self):
|
||||
print("Scan this QR Code with the Bump app to connect them:")
|
||||
print("Scan this QR Code with the Bump app to connect")
|
||||
for secret in self.secrets:
|
||||
qr = qrcode.QRCode(
|
||||
version=1,
|
||||
|
5
setup.py
5
setup.py
@ -4,7 +4,7 @@ setup(
|
||||
name='bump_python',
|
||||
packages=['bump'],
|
||||
description='Notify your Phone from Python',
|
||||
version='0.1',
|
||||
version='0.1.1',
|
||||
url='https://git.maenle.tech/raphael/bump_python',
|
||||
author='Raphael Maenle',
|
||||
author_email='raphael@maenle.net',
|
||||
@ -13,6 +13,7 @@ setup(
|
||||
install_requires=[
|
||||
'requests',
|
||||
'pybase64',
|
||||
'qrcode'
|
||||
'qrcode',
|
||||
'random-word'
|
||||
]
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user