mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-13 12:33:25 +02:00
* Add itest for squeaknode client, not passing yet * Got working itest with get wallet balance * Change name of squeak node client class.
26 lines
677 B
Python
26 lines
677 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',
|
|
],
|
|
},
|
|
)
|