-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 871 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
from setuptools import setup, find_packages
import platform
# signing is not needed if you use and external signer
signing_reqs = ['pbkdf2','bitcoin']
# scrypte is preferred, but usually a problem for windows:
# also c_secp256k1 is often a problem on any platform, or it ould be there too
if platform.system() != 'Windows':
signing_reqs.append(['scrypt'])
setup(
name='eth_proxy',
version='0.13',
description='Ethereum JSON-RPC Proxy',
url='https://github.com/jimkberry/eth_proxy.py',
author='jimkberry',
author_email='[email protected]',
license='',
packages=find_packages(),
setup_requires =['pytest-runner',],
tests_require=['pytest',],
install_requires=[
'requests',
'pycryptodome',
'rlp',
],
extras_require={
'signing': signing_reqs
},
zip_safe=False
)