forked from bitstein/Flask-LND
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (31 loc) · 833 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"""
Flask-LND
-------------
Flask-LND initializes an LND gRPC interface that can be used across your app
for communicating with a local or remote LND node.
"""
from setuptools import setup
setup(
name='Flask-LND',
version='0.0.1',
url='https://github.com/bitstein/flask-lnd',
license='MIT',
author='Michael Goldstein',
author_email='[email protected]',
description='An LND gRPC interface for Flask',
long_description=__doc__,
py_modules=['flask_lnd'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask',
'lnd-grpc'
],
keywords="lnd grpc flask",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)