-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
63 lines (57 loc) · 1.22 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["hatchling >= 1.26", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pyest"
dynamic = ["version"]
authors = [
{ name = "Keith A. LeGrand" }
]
description = "Adaptive Gaussian Mixture State Estimation"
dependencies = [
'cvxopt',
'diskcache',
'huggingface_hub',
'jax',
'numba',
'numpy',
'pyarrow',
'fastparquet',
'scipy',
'shapely',
]
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"state estimation",
"uncertainty propagation",
"Gaussian mixture",
"nonlinear estimation",
"Bayesian filtering",
"negative information",
"Gaussian splitting",
"target tracking",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://github.com/scope-lab/pyest"
Issues = "https://github.com/scope-lab/pyest"
Documentation = "https://pyest.readthedocs.io/en/latest/"
[project.optional-dependencies]
test = [
'dill',
'pytest-cov',
'pytest-benchmark',
]
examples = [
'matplotlib',
'sympy==1.12',
'STMint>=1.2.1',
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
version_scheme = "no-guess-dev"
[tool.hatch.build.hooks.vcs]
version-file = "pyest/_version.py"