2022-01-14 22:17:01 +01:00
|
|
|
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',
|
2022-01-14 22:17:01 +01:00
|
|
|
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',
|
2022-01-14 22:17:01 +01:00
|
|
|
'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'
|
2022-01-14 22:17:01 +01:00
|
|
|
]
|
|
|
|
)
|