squeaknode/setup.py
Jonathan Zernik b78e868f53
Connect client and server (#15)
* Remove threading from uploader.

* Create rpc_client class in client to connect to server (using grpc) and verify that the upload_squeak method in rpc_client gets calleed

* Add main class with entry point in squeaknod/server

* Added sqkserver command and service to docker-compose for test

* Add server handler class, and still trying to load rpc implementation of server proto

* Almost got server grpc proto working, now only lnd client failing with tls cert issue

* Added server service and got it working in itest, it still doesn't do anything.
2020-06-03 02:59:56 -07:00

27 lines
742 B
Python

import io
from setuptools import find_packages
from setuptools import setup
with io.open("README.rst", "rt", encoding="utf8") as f:
readme = f.read()
setup(
name="squeaknode",
version="1.0.0",
url="https://flask.palletsprojects.com/tutorial/",
license="BSD",
description="The basic blog app built in the Flask tutorial.",
long_description=readme,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=["flask"],
extras_require={"test": ["pytest", "coverage"]},
entry_points={
'console_scripts': [
'runsqueaknodeclient = squeaknode.client.main:main',
'runsqueaknodeserver = squeaknode.server.main:main',
],
},
)