forked from arsenlosenko/python-ripple-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 694 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
version = '1.0.5'
setup(
name='python-ripple-lib',
version=version,
packages=['ripple_api'],
url='https://github.com/arsenlosenko/python-ripple-rpc',
license='MIT',
author='Arsen Losenko',
author_email='arsenlosenko@gmail.com',
description='Ripple JSON-RPC API wrapper for python',
long_description=open('README.rst').read(),
keywords='ripple rippled json-rpc',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5'
]
)