-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (64 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
69 lines (64 loc) · 1.64 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "tmtccmd"
description = "TMTC Commander Core"
readme = "README.md"
version = "9.0.0"
requires-python = ">=3.10"
license = {text = "Apache-2.0 or MIT" }
authors = [
{name = "Robin Mueller", email = "robin.mueller.m@gmail.com"}
]
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",
"spacepackets ~= 0.31.0",
"cfdp-py ~= 0.6.0",
"com-interface ~= 0.2.0",
"tomli ~= 2.3.0"
]
[project.optional-dependencies]
gui = [
"PyQt6~=6.6",
]
test = [
"pytest",
"coverage",
"pyfakefs~=5.7",
]
[project.urls]
"Homepage" = "https://github.com/robamu-org/tmtccmd"
[tool.ruff]
exclude = [
".git",
"venv",
"docs"
]
line-length = 100
[tool.ruff.lint]
select = ["F", "E", "W", "I", "N", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.ruff.lint.extend-per-file-ignores]
"__init__.py" = ["F401"]