-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.59 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = 'ait-dsn'
version = '2.1.1'
description = "APIs for connecting to ground stations via CCSDS interfaces"
license = 'MIT'
readme = 'README.rst'
homepage = 'https://github.com/NASA-AMMOS/AIT-DSN'
repository = 'https://github.com/NASA-AMMOS/AIT-DSN'
documentation = 'https://ait-dsn.readthedocs.io/en/latest'
authors = ['AMMOS Instrument Toolkit Development Team <[email protected]>']
packages = [
{include = "ait"}
]
[tool.poetry.dependencies]
python = '>= 3.7 < 3.11'
greenlet = '1.1.3'
ait-core = '>= 2.4.0'
pyasn1 = '*'
bitstring = '*'
xmltodict = '*'
[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 = '*'
nose = '*'
mock = '*'
pre-commit = '*'
sphinx = '>= 4.2'
sphinx-rtd-theme = '*'
sphinxcontrib-httpdomain = '*'
tox = '>= 3.8 < 4.0'
twine = '^3.4.2'
[tool.poetry.scripts]
build_sphinx = 'poetry_cli.build_sphinx:main'