-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
65 lines (61 loc) · 1.55 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tmtccmd"
description = "TMTC Commander Core"
readme = "README.md"
version = "8.1.0"
requires-python = ">=3.9"
license = {text = "Apache-2.0 or MIT" }
authors = [
{name = "Robin Mueller", email = "[email protected]"}
]
keywords = ["ccsds", "ecss", "space", "communication", "packet"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Communications",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering"
]
dependencies = [
"crcmod~=1.7",
"colorama~=0.4.0",
"colorlog~=6.6",
"cobs~=1.2",
"prompt-toolkit~=3.0",
"Deprecated~=1.2",
"pyserial~=3.5",
"dle-encoder~=0.2.3",
"spacepackets>=0.24.0, <=0.27",
"cfdp-py>=0.1.1, <=0.4",
]
[project.optional-dependencies]
gui = [
"PyQt6~=6.6",
]
test = [
"pyfakefs~=5.7",
"pytest~=8.3"
]
[project.urls]
"Homepage" = "https://github.com/robamu-org/tmtccmd"
[tool.ruff]
exclude = [
".git",
"venv",
"docs"
]
line-length = 100
[tool.ruff.lint]
ignore = ["E501"]
[tool.ruff.lint.extend-per-file-ignores]
"__init__.py" = ["F401"]