-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.43 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
[project]
name = "serums"
version = "1.0.6"
description = "A Python package for Statistical Error and Risk Utility for Multi-sensor Systems (SERUMS)."
readme = "README.rst"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = [
"Statistical error",
"overbounding",
"Gaussian distributions",
"multi-sensor systems"
]
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",
]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"probscale",
"pandas",
]
[project.urls]
homepage = "http://lager.ua.edu/"
documentation = "https://drjdlarson.github.io/serums/"
repository = "https://github.com/drjdlarson/serums"
# 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"
[tool.pytest.ini_options]
minversion = "6.0"
junit_suite_name = "serums"
junit_log_passing_tests = true
junit_duration_report = "call"
junit_logging = "all"
# activates the extension
[tool.setuptools_scm]
version_scheme = "no-guess-dev"