-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
66 lines (61 loc) · 2.27 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
# Advanced Multi-Mission Operations System (AMMOS) Instrument Toolkit (AIT)
# Bespoke Link to Instruments and Small Satellites (BLISS)
#
# Copyright 2017, by the California Institute of Technology. ALL RIGHTS
# RESERVED. United States Government Sponsorship acknowledged. Any
# commercial use must be negotiated with the Office of Technology Transfer
# at the California Institute of Technology.
#
# This software may be subject to U.S. export control laws. By accepting
# this software, the user agrees to comply with all applicable U.S. export
# laws and regulations. User has the responsibility to obtain export licenses
# or other export authority as may be required before exporting such
# information to foreign countries or providing access to foreign persons.
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ait-gui"
version = "2.4.1"
description = """\
A framework for building a custom website for realtime telemetry \
monitoring, commanding, and other MOS operations, built atop the \
AIT Core libraries.\
"""
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/NASA-AMMOS/AIT-GUI"
repository = "https://github.com/NASA-AMMOS/AIT-GUI"
documentation = "https://ait-gui.readthedocs.io/en/latest"
authors = ['AMMOS Instrument Toolkit Development Team <[email protected]>']
packages = [
{include = "ait"}
]
[tool.poetry.dependencies]
python = ">= 3.7 < 3.11"
ait-core = ">=2.5.0"
greenlet = "1.1.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 = '>= 4.2'
sphinx-rtd-theme = '*'
sphinxcontrib-httpdomain = '*'
tox = '>= 3.8 < 4.0'
twine = '^3.4.2'
[tool.poetry.scripts]
ait-example = 'ait.gui.bin.ait_example:main'