bump_python/setup.py

30 lines
657 B
Python
Raw Normal View History

from setuptools import setup
setup(
entry_points={
'console_scripts': [
'bump = bump.cli:main',
],
},
name='bump_python',
packages=['bump'],
description='Notify your Phone from Python',
version='0.1.3',
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',
'typer'
]
)