mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 10:39:49 +01:00
12 lines
341 B
Python
12 lines
341 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(name='pylightning',
|
||
|
version='0.0.1',
|
||
|
description='Client library for lightningd',
|
||
|
url='http://github.com/ElementsProject/lightning',
|
||
|
author='Christian Decker',
|
||
|
author_email='decker.christian@gmail.com',
|
||
|
license='MIT',
|
||
|
packages=['lightning'],
|
||
|
zip_safe=True)
|