forked from marcobardoscia/neva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
18 lines (17 loc) · 806 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
setup(name='neva',
version='0.3',
description='Network valuation in financial systems',
long_description='''This is an implementation of the Neva framework
in https://doi.org/10.1111/mafi.12272. Neva
allows to perform the valuation of equities of banks
that hold cross-holding of debt. Several known
contagion algorithms (e.g. Furfine, Eisenberg and Noe,
and Linear DebtRank) are special cases of Neva.''',
url='https://github.com/marcobardoscia/neva',
author='Marco Bardoscia',
author_email='[email protected]',
license='LGPLv3',
packages=['neva'],
include_package_data=True,
zip_safe=False)