-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 910 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
from setuptools import setup
setup(
name='iter-inla',
version='0.3.0',
description='A Python implementation of iterated INLA for state and parameter estimation in nonlinear dynamical systems.',
url='https://github.com/rafaelanderka/iter-inla',
author='Rafael Anderka',
author_email='rafael.anderka.22@ucl.ac.uk',
license='BSD 2-clause',
packages=['iinla'],
install_requires=[
'scikit-learn',
'scipy',
'numpy',
'matplotlib',
'tqdm',
'sdeint',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.10',
],
)