-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 839 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 839 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
31
32
33
"""Installation of EVMScripts parser package."""
from setuptools import setup, find_packages
from evmscript_parser.package import NAME, CLI_NAME
setup(
name=NAME,
description='Parser for human-readable decoding of EVM scripts.',
author='Dmitri Ivakhnenko',
author_email='dmit.ivh@gmail.com',
use_scm_version={
'root': '.',
'relative_to': __file__,
'local_scheme': 'node-and-timestamp'
},
setup_requires=['setuptools_scm'],
packages=find_packages(
where='.',
exclude='tests'
),
entry_points={
'console_scripts': [
f'{CLI_NAME}=evmscript_parser.cli:main'
]
},
python_requires='>=3.8',
install_requires=[
'requests~=2.26.0',
'pysha3~=1.0.0',
'eth-brownie~=1.16.0',
'web3~=5.23.0'
]
)