forked from miracle2k/ripple-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (26 loc) · 714 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·30 lines (26 loc) · 714 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
25
26
27
28
29
30
#!/usr/bin/env python
# coding: utf-8
import sys
from setuptools import setup, find_packages
install_requires = [
'ecdsa>=0.10',
'six>=1.5.2',
'websocket-client==0.14.0'
]
setup(
name="ripple-python",
description="Python routines for the Ripple payment network",
author='Michael Elsdörfer',
author_email='michael@elsdoerfer.com',
version="0.2.11",
url="https://github.com/miracle2k/ripple-python",
license='BSD',
packages=find_packages(),
zip_safe=True,
install_requires=install_requires,
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.3',
'License :: OSI Approved :: BSD License',
]
)