-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (43 loc) · 1.25 KB
/
pyproject.toml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[project]
name = 'mfs'
version = '0.1.0'
description = 'Stochastic filtering with moment representations'
readme = 'README.md'
requires-python = '>=3.7'
license = { file = 'LICENSE' }
keywords = ['stochastic differential equations', 'statistics', 'filtering', 'smoothing']
authors = [
{name = 'Zheng Zhao', email = '[email protected]'},
]
maintainers = [
{name = 'Zheng Zhao', email = '[email protected]'},
]
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics'
]
dependencies = [
'numpy',
'scipy',
'jaxlib',
'jax>=0.4.1',
'jaxopt',
'tme>=0.1.5',
'sympy',
'matplotlib',
'typing-extensions'
]
[project.optional-dependencies]
test = ['pytest', 'sympy']
[project.urls]
'Repository' = 'https://github.com/zgbkdlm/mfs'
'Author' = 'https://zz.zabemon.com'
[build-system]
requires = ['setuptools>=43.0.0', 'wheel']
build-backend = 'setuptools.build_meta'