Skip to content

Commit

Permalink
Merge pull request #251 from ibz/main
Browse files Browse the repository at this point in the history
Adding setup.py
  • Loading branch information
C-Otto authored Jan 13, 2022
2 parents d108fd2 + 12bac65 commit ad839bc
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/usr/bin/env python3
from setuptools import setup

setup(
name='rebalance-lnd',
version='2.1',
description='A script that can be used to balance lightning channels of a LND node',
author='Carsten Otto',
author_email='bitcoin@c-otto.de',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
],
keywords='lightning, lnd, bitcoin',
python_requires='>=3.6, <4',
entry_points={
'console_scripts' : ['rebalance-lnd=rebalance:main']
},
project_urls={
'Source' : 'https://github.com/C-Otto/rebalance-lnd'
}
)

0 comments on commit ad839bc

Please sign in to comment.