-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
42 lines (31 loc) · 952 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
40
41
42
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',
author_email='agusxrun@gmail.com, jpgonzalezra@gmail.com, majd_takialddin@hotmail.com',
url='https://github.com/ripio/marmopy-sdk',
packages=find_packages(exclude=('tests',)),
install_requires=[
"web3==3.16.5",
"rlp==0.6.0",
"pycryptodome==3.7.2",
"coincurve==11.0.0",
"eth-abi==0.5.0",
"requests"
],
extras_require={
"dev": [
"pylint",
"pytest",
"tox>=1.8.0"
]
},
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)