mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
12 lines
341 B
Python
12 lines
341 B
Python
from setuptools import setup
|
|
|
|
setup(name='pylightning',
|
|
version='0.0.2',
|
|
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)
|