-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md') as fp:
long_description = fp.read()
setup(
name='lightning-rest',
version='0.2.1',
description='Rest server for the `lightningd` RPC.',
long_description=long_description,
author='Hasan Basri',
author_email='[email protected]',
license='MIT',
keywords='lightning rest api',
url='https://github.com/hbasria/lightning-rest',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['aiohttp-swagger>=1.0.5,<=2.0', ],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules']
)