-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (53 loc) · 1.56 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
[project]
name = "carbs"
# version = "0.0.0"
dynamic = ["version"]
description = "A package for Guidance, Navigation, and Control (GNC) for Autonomous Swarms Using Random finite sets (RFS)."
readme = "README.rst"
requires-python = ">=3.7, <3.10"
license = {file = "LICENSE"}
keywords = [
"Guidance Navigation and Control",
"multi-vehicle teams",
"Random Finite Sets",
"multi-object tracking"
]
authors = [
{ name = "Laboratory for Autonomy GNC and Estimation Research (LAGER)" },
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Operating System :: POSIX :: Linux",
#"Operating System :: MacOS",
]
dependencies = [
"serums",
"gncpy",
"numpy",
"scipy",
"matplotlib",
]
[project.urls]
homepage = "http://lager.ua.edu/"
documentation = "https://drjdlarson.github.io/carbs/"
repository = "https://github.com/drjdlarson/carbs"
# changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
# activates the extension
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.pytest.ini_options]
minversion = "6.0"
junit_suite_name = "carbs"
junit_log_passing_tests = true
junit_duration_report = "call"
junit_logging = "all"