forked from rcnfinance/marmopy-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (28 loc) · 744 Bytes
/
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
33
34
35
36
37
38
39
from setuptools import find_packages, setup
setup(
name='marmopy',
version="0.4.0",
description='Marmo wallet Python SDK',
author='Agustin Aguilar, Joaquin Gonzalez, Majed Takieddine',
url='https://github.com/ripio/marmopy-sdk',
packages=find_packages(exclude=('tests',)),
install_requires=[
"web3",
"rlp",
"pycryptodome",
"coincurve",
"eth-abi",
"requests"
],
extras_require={
"dev": [
"pylint",
"pytest",
"tox>=1.8.0"
]
},
classifiers=[
'Programming Language :: Python :: 3.7',
],
)