-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (81 loc) · 3.43 KB
/
pyproject.toml
File metadata and controls
87 lines (81 loc) · 3.43 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ait-core"
version = "3.0.0"
description = "NASA JPL's Ground Data System toolkit for Instrument and CubeSat Missions"
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/NASA-AMMOS/AIT-Core"
repository = "https://github.com/NASA-AMMOS/AIT-Core"
documentation = "https://ait-core.readthedocs.io/en/latest"
authors = [
"AMMOS Instrument Toolkit Development Team <ait-pmc@googlegroups.com>",
]
packages = [{ include = "ait" }]
include = ["ait/core/data/*.json"]
[tool.poetry.dependencies]
python = ">= 3.10 < 3.12"
bottle = "0.12.23"
jsonschema = "4.25.1"
pyyaml = "6.0.1"
requests = ">= 2.22.0"
greenlet = "^3.1.1"
gevent = "25.9.1"
gevent-websocket = "0.10.1"
pyzmq = "24.0.0"
gipc = "^1.1.0"
setproctitle = "^1.2.3"
msgpack = "1.0.5"
importlib_metadata = "4.3.0"
importlib_resources = "6.5.2"
[tool.poetry.group.dev.dependencies]
black = "*"
flake8 = "*"
pyproject-flake8 = "^0.0.1-alpha.2"
flake8-bugbear = "*"
pep8-naming = "*"
mypy = "*"
types-PyYAML = "*"
types-requests = "*"
types-setuptools = "*"
pydocstyle = "*"
coverage = "*"
pytest = "*"
pytest-cov = "*"
pytest-watch = "*"
pytest-xdist = "*"
pre-commit = "*"
sphinx = "4.4"
setuptools = "*"
sphinx-rtd-theme = "*"
sphinxcontrib-httpdomain = "*"
tox = ">= 3.8 < 4.0"
twine = "^3.4.2"
[tool.poetry.scripts]
ait-bsc = "ait.core.bin.ait_bsc:main"
ait-bsc-create-handler = "ait.core.bin.ait_bsc_create_handler:main"
ait-bsc-stop-handler = "ait.core.bin.ait_bsc_stop_handler:main"
ait-ccsds-send-example = "ait.core.bin.ait_ccsds_send_example:main"
ait-cmd-hist = "ait.core.bin.ait_cmd_hist:main"
ait-cmd-send = "ait.core.bin.ait_cmd_send:main"
ait-create-dirs = "ait.core.bin.ait_create_dirs:main"
ait-dict-writer = "ait.core.bin.ait_dict_writer:main"
ait-limits-find-dn = "ait.core.bin.ait_limits_find_dn:main"
ait-mps-seq-convert = "ait.core.bin.ait_mps_seq_convert:main"
ait-pcap = "ait.core.bin.ait_pcap:main"
ait-pcap-segment = "ait.core.bin.ait_pcap_segment:main"
ait-seq-decode = "ait.core.bin.ait_seq_decode:main"
ait-seq-encode = "ait.core.bin.ait_seq_encode:main"
ait-seq-print = "ait.core.bin.ait_seq_print:main"
ait-seq-send = "ait.core.bin.ait_seq_send:main"
ait-server = "ait.core.bin.ait_server:main"
ait-table-decode = "ait.core.bin.ait_table_decode:main"
ait-table-encode = "ait.core.bin.ait_table_encode:main"
ait-tlm-csv = "ait.core.bin.ait_tlm_csv:main"
ait-tlm-db-insert = "ait.core.bin.ait_tlm_db_insert:main"
ait-tlm-send = "ait.core.bin.ait_tlm_send:main"
ait-tlm-simulate = "ait.core.bin.ait_tlm_simulate:main"
ait-yaml-validate = "ait.core.bin.ait_yaml_validate:main"
build_sphinx = "poetry_cli.build_sphinx:main"