-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (43 loc) · 1.29 KB
/
setup.py
File metadata and controls
46 lines (43 loc) · 1.29 KB
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
from setuptools import setup, find_packages
import pathlib
VERSION = '1.0'
CURRENT_DIR = pathlib.Path(__file__).parent
README = (CURRENT_DIR / 'README.md').read_text()
PYTHON_REQUIREMENT = '>=3.7.0'
REQUIREMENTS = [
"Jinja2==2.11.2",
"mythril==0.23.17",
"colorama==0.4.3",
"pypandoc==1.5",
"py-solc==3.2.0"
]
setup(
name="dolabra",
version=VERSION,
description='Semantic EVM bytecode analyzer based on Mythril',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/davidloz/dolabra',
author='David Loz',
author_email='nicetry@gmail.com',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
packages=find_packages(),
include_package_data=True,
install_requires=REQUIREMENTS,
python_requires=PYTHON_REQUIREMENT,
entry_points={
'console_scripts': [
'dolabra=dolabra.cli.main:main',
],
},
)