-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.23 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 = "spac-kit-europa-clipper"
version = "0.1.0.dev0"
description = "CCSDS packet definitions for Europa Clipper instruments"
authors = [
{name = "Joshua Garde",email = "jgarde@jpl.nasa.gov"}
]
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.12,<4.0"
dependencies = [
"tqdm~=4.66.1",
"pandas~=2.3.3",
"spac-kit @ git+https://github.com/CCSDSPy/SPaC-Kit.git",
"sphinx-autobuild~=2025.8.25"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
packages = [
{ include = "ccsds" }
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0,<9.0.0",
"bitstring~=4.3.1",
"flake8>=6.0.0,<7.0.0",
"pylint~=3.3.9",
"poetry~=2.2.1",
"sphinx_rtd_theme~=3.1.0",
]
# duplicate section to satisfy both Poetry and PEP 621 tools
[dependency-groups]
dev = [
"pytest>=8.0.0,<9.0.0",
"bitstring~=4.3.1",
"flake8>=6.0.0,<7.0.0",
"pylint~=3.3.9",
"poetry~=2.2.1"
]
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = [
"W0201", # attribute-defined-outside-init
"R0801", # Similar lines in 2 files
"C0116", # missing-function-docstring
"R0903", # too-few-public-methods
]