-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 758 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 758 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="aleovera",
description="Aleo bytecode analyzer and disassembler",
url="https://github.com/FuzzingLabs/aleovera",
keywords="aleo leo disassembler analysis security reversing cfg callflow",
author="FuzzingLabs",
version="0.1.0",
packages=find_packages(),
python_requires=">=3.6",
install_requires=[
"graphviz",
],
license="AGPL-3.0",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"aleovera = aleovera.aleovera:main",
]
},
)