2022-01-14 22:17:01 +01:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
2022-01-16 22:24:23 +01:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'bump = bump.cli:main',
|
|
|
|
],
|
|
|
|
},
|
2022-01-14 22:17:01 +01:00
|
|
|
name='bump_python',
|
|
|
|
packages=['bump'],
|
|
|
|
description='Notify your Phone from Python',
|
2022-01-17 15:09:47 +01:00
|
|
|
version='0.1.5',
|
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-16 13:41:04 +01:00
|
|
|
'regex',
|
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',
|
2022-01-16 22:24:23 +01:00
|
|
|
'cryptography',
|
|
|
|
'typer'
|
2022-01-14 22:17:01 +01:00
|
|
|
]
|
|
|
|
)
|