forked from NASA-AMMOS/AIT-Core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (79 loc) · 3.12 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = 'ait-core'
version = '2.3.6-rc1'
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 <[email protected]>']
packages = [
{include = "ait"}
]
include = [
"ait/core/data/*.json"
]
[tool.poetry.dependencies]
python = '~3.7'
bottle = '0.12.17'
jsonschema = '3.0.2'
pyyaml = '5.1.2'
requests = '>= 2.22.0'
greenlet = '0.4.16'
gevent = '1.4.0'
gevent-websocket = '0.10.1'
pyzmq = '18.1.0'
gipc = "^1.1.0"
setproctitle = "^1.2.3"
[tool.poetry.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 = '*'
sphinx-rtd-theme = '*'
sphinxcontrib-httpdomain = '*'
tox = '>= 3.8'
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'