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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(name='PyCTBN',
|
|
|
|
version='1.0',
|
|
|
|
url='https://github.com/philipMartini/PyCTBN',
|
|
|
|
license='MIT',
|
|
|
|
author=['Alessandro Bregoli', 'Filippo Martini'],
|
|
|
|
author_email=['a.bregoli1@campus.unimib.it', 'f.martini@campus.unimib.it'],
|
|
|
|
description='A Continuous Time Bayesian Networks Library',
|
|
|
|
packages=find_packages(exclude=['tests', 'data']),
|
|
|
|
install_requires=[
|
|
|
|
'numpy', 'pandas', 'networkx'],
|
|
|
|
dependency_links=['https://github.com/numpy/numpy', 'https://github.com/pandas-dev/pandas',
|
|
|
|
'https://github.com/networkx/networkx'],
|
|
|
|
long_description=open('README.md').read(),
|
|
|
|
zip_safe=False)
|