This repository was archived by the owner on Mar 6, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathsetup.py
51 lines (41 loc) · 1.38 KB
/
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
43
44
45
46
47
48
49
50
51
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="octopus",
version="0.3.5",
author="Patrick Ventuzelo",
license='MIT',
description="Security analysis framework for WebAssembly module (wasm) and Blockchain Smart Contract (BTC/ETH/EOS/NEO).",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pventuzelo/octopus",
keywords='disassembler security webassembly ethereum eos neo',
packages=find_packages(),
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Disassemblers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
),
install_requires=[
'z3-solver>=4.5',
'requests>=2.18.4',
'graphviz>=0.8.3',
'wasm>=1.1'
],
python_requires='>=3.5',
package_data={
'octopus.arch.evm': ['*.json'],
'octopus.arch.wasm.signatures': ['*.json']
},
entry_points={
'console_scripts': [
'octopus_eth_evm = octopus.octopus_eth_evm:main',
'octopus_wasm = octopus.octopus_wasm:main',
],
},
)