-
Notifications
You must be signed in to change notification settings - Fork 140
/
pyproject.toml
122 lines (109 loc) · 2.27 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "stonesoup"
description = "A tracking and state estimation framework"
maintainers = [
{ name = "Defence Science and Technology Laboratory UK", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.9"
dependencies = [
"matplotlib",
"mergedeep",
"numpy>=1.17",
"ordered-set",
"plotly>=5.0",
"pymap3d",
"rtree",
"ruamel.yaml>=0.16.5",
"scipy",
"utm",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "MIT"
[project.urls]
Homepage = "https://github.com/dstl/Stone-Soup"
Documentation = "https://stonesoup.readthedocs.org"
"Release Notes" = "https://github.com/dstl/Stone-Soup/releases"
Issues = "https://github.com/dstl/Stone-Soup/issues"
[project.optional-dependencies]
dev = [
"confluent-kafka",
"coverage>=7.2",
"flake8",
"folium",
"h5py",
"ortools",
"pandas",
"pillow",
"pytest-cov",
"pytest-remotedata",
"pytest-skip-slow",
"Sphinx",
"sphinx-gallery>=0.17",
"sphinx_rtd_theme>=1.2",
]
video = [
"ffmpeg-python",
"moviepy",
"opencv-python",
]
tensorflow = [
"tensorflow>=2.2.0",
]
tensornets = [
"tensorflow>=2.2.0",
"tensornets",
]
orbital = [
"astropy",
]
mfa = [
"ortools",
]
ehm = [
"pyehm",
]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
exclude = [
"docs",
"*.tests",
]
namespaces = false
[tool.pytest.ini_options]
python_classes = []
[tool.coverage.run]
branch = true
parallel = true
source = [
"stonesoup"
]
omit = [
"*/tests/*"
]
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_also = [
# Don't complain if tests don't hit defensive assertion code
"raise NotImplementedError",
# Ignore pass
"pass",
# Ignore type checking
"if TYPE_CHECKING:",
]