bump_python/setup.py

24 lines
546 B
Python
Raw Normal View History

from setuptools import setup
setup(
name='bump_python',
packages=['bump'],
description='Notify your Phone from Python',
2022-01-15 14:12:51 +01:00
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=[
2022-01-15 14:27:37 +01:00
'wheel',
'regex',
'requests',
2022-01-14 22:24:15 +01:00
'pybase64',
2022-01-15 14:12:51 +01:00
'qrcode',
2022-01-15 14:27:37 +01:00
'pyyaml',
'random-word',
'cryptography'
]
)