-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #251 from ibz/main
Adding setup.py
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
} | ||
) |