bump_python/setup.py
raphael 570a64f450 improves random word generation
- only words matching a-zA-Z are used,
  which removes some situations where
  the generated code was not readable
  by the android application
- words are now under 10 characters long
- function flow improved for readability
2022-01-16 13:41:04 +01:00

24 lines
546 B
Python

from setuptools import setup
setup(
name='bump_python',
packages=['bump'],
description='Notify your Phone from Python',
version='0.1.1',
url='https://git.maenle.tech/raphael/bump_python',
author='Raphael Maenle',
author_email='raphael@maenle.net',
keywords=['pip','maenle','bump','notify','phone'],
license='MIT',
install_requires=[
'wheel',
'regex',
'requests',
'pybase64',
'qrcode',
'pyyaml',
'random-word',
'cryptography'
]
)