forked from omgnetwork/plasma-mvp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 652 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 652 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
name='plasma',
description='Plasma MVP',
long_description=readme,
author='David Knott',
author_email='',
license=license,
packages=find_packages(exclude=('tests')),
include_package_data=True,
install_requires=[
'ethereum==2.3.0',
'web3==3.16.4',
'werkzeug==0.13',
'json-rpc==1.10.8',
'plyvel==1.0.4',
'py-solc',
'click==6.7',
'pytest',
],
entry_points={
'console_scripts': ["omg=plasma.cli:main"],
}
)