Old engine for Continuous Time Bayesian Networks. Superseded by reCTBN. 🐍
https://github.com/madlabunimib/PyCTBN
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
439 B
12 lines
439 B
from setuptools import setup, find_packages
|
|
|
|
setup(name='ctbn',
|
|
version='1.0',
|
|
url='https://github.com/philipMartini/CTBN_Project',
|
|
#license='MIT',
|
|
author='Filippo Martini',
|
|
author_email='f.martini@campus.unimib.it',
|
|
description='A Continuous Time Bayesian Network Library',
|
|
packages=find_packages(exclude=['tests', 'data']),
|
|
long_description=open('README.md').read(),
|
|
zip_safe=False) |