-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
90 lines (80 loc) · 1.74 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
[options]
install_requires = []
[project]
authors = [{name = "Joao Morado", email = "joao.morado@noc.ac.uk"}]
classifiers = [
"License :: OSI Approved :: GPL License",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Oceanography Modeling",
"Topic :: Scientific/Engineering",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9"
]
description = "A software package designed for estimating historical ship tracks utilising either Kalman filters or Gaussian processes."
dynamic = [
"version",
"dependencies"
]
keywords = [
"Ship tracking",
"Kalman Filters",
"Gaussian Processes",
"Historical Ship Tracks"
]
license = {file = "LICENSE"}
name = "track_estimators"
readme = "README.md"
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov"
]
[project.scripts]
track_estimator = "track_estimators.cli.main_cli:track_estimator"
[tool.coverage.run]
branch = true
[tool.mypy]
strict = false
[tool.ruff]
ignore = [
# pydocstyle: Missing Docstrings
"D1",
# pydocstyle: numpy convention
"D107",
"D203",
"D212",
"D213",
"D402",
"D413",
"D415",
"D416",
"D417"
]
# Black line length is 88, but black does not format comments.
line-length = 110
select = [
# pyflakes
"F",
# pycodestyle
"E",
"W",
# isort
"I",
# pydocstyle
"D"
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools_scm]
write_to = "src/track_estimators/version.py"
write_to_template = '''
# Do not change! Do not track in version control!
__version__ = "{version}"
'''