blobsend/setup.py

24 lines
540 B
Python

#!/usr/bin/env python3
from setuptools import setup
__version__ = "0.0.0"
setup(name='blobsend',
version=__version__,
description='tool for updating sub-portions of large files',
url='',
author='dpedu',
author_email='dave@davepedu.com',
packages=['blobsend'],
install_requires=[],
entry_points={
"console_scripts": [
"blobsend = blobsend.cli:main",
"_blobsend_ssh_remote = blobsend.client_ssh_remote:main"
]
},
zip_safe=False)