-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.03 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
[project]
name = "open-mss"
version = "11.0.0"
description = "MSS - Mission Support System"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
]
keywords = ["mslib"]
maintainers = [
{name = "Reimar Bauer", email = "rb.proj@gmail.com"},
]
authors = [
{name = "Marc Rautenhaus", email = "wxmetvis@posteo.de"},
]
license = "Apache-2.0"
license-files = ["LICENSE"]
[project.urls]
Repository = "https://github.com/Open-MSS/MSS"
[project.scripts]
mscolab = "mslib.mscolab.mscolab:main"
msidp = "mslib.msidp.idp:main"
mssautoplot = "mslib.utils.mssautoplot:main"
mss = "mslib.msui.mss:main"
mswms = "mslib.mswms.mswms:main"
[project.gui-scripts]
msui = "mslib.msui.msui:main"
[build-system]
requires = ["setuptools >=61.0,<81"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["mslib*"]
[tool.codespell]
exclude-file = "codespell-ignored-lines.txt"
ignore-words-list = [
"PRES",
"degreeE",
"doubleClick",
"indexIn",
"socio-economic",
"EMAC",
"emac"
]