-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (21 loc) · 812 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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='phi-accrual-failure-detector',
packages=['phi-accrual-failure-detector'],
version='0.3.3',
license='MIT',
description='A port of the Akka\'s (φ) Accrual failure detector implementation',
long_description=long_description,
long_description_content_type='text/markdown',
author='samuele.resca',
author_email='samuele.resca@gmail.com',
url='https://github.com/samueleresca/phi-accrual-failure-detector',
download_url='https://github.com/samuele.resca/phi-accrual-failure-detector/archive/v_01.tar.gz',
keywords=['distributed-systems', 'fault-tolerance', 'fault-tolerant', 'fault-detection'],
install_requires=[
'atomos'
],
classifiers=[],
)