sbeam/setup.py

17 lines
447 B
Python
Executable File

from setuptools import setup, find_namespace_packages
setup(
name="SuperBeam CLI",
version="0.1",
author="JayPiKay",
author_email="jpk+python@goatpr0n.de",
url='https://git.goatpr0n.de/',
scripts=['sbeam.py'],
packages=find_namespace_packages(include=['SuperBeam']),
install_requires=['Click>=7.0', 'PyQRCode>=1.2.1', 'requests>=2.22.0'],
entry_points={
'console_scripts': ['sbeam=sbeam:cli']
}
)