-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
32 lines (28 loc) · 869 Bytes
/
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='phantom',
version='0.041',
description='An efficient implementation of the PHANTOM block-DAG protocol.',
url='https://github.cs.huji.ac.il/aviv-yaish/PHANTOM',
author='Aviv Yaish',
author_email='[email protected]',
packages=['phantom'],
long_description=readme(),
python_requires='>=3.6',
install_requires=[
'networkx',
'numpy',
'pathos',
'jsonpickle',
'matplotlib', # for printing purposes
'seaborn', # for printing purposes
'ordered_set', # for printing purposes
'simpy', # for simulation purposes
'pytest', # for testing purposes
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)