mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-06 05:49:30 +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)
|