raphael
750f79f03a
- cli generated using typer package, which is added to the setup.py - if optional argument to bump is not passed, the current secret is visualized - if there is an argument, it is pushed as a message to the current sender - adds setup.py command line script which adds a call to the bump.cli:main function passing the cli parameters along - updates package version to 0.1.3 - Squashed commits: - commite120815378
- commit3a47ee56bf
- commitaeca052cbc
- commit2294650daa
30 lines
657 B
Python
30 lines
657 B
Python
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=[
|
|
'wheel',
|
|
'regex',
|
|
'requests',
|
|
'pybase64',
|
|
'qrcode',
|
|
'pyyaml',
|
|
'random-word',
|
|
'cryptography',
|
|
'typer'
|
|
]
|
|
)
|