-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
37 lines (33 loc) · 1.14 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
[tool.poetry]
name = "microsoftazurespacefx"
description = "Write Payload Applications leveraging the Microsoft Azure Orbital Space SDK"
authors = ["Azure Space SDK"]
classifiers = ["Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Topic :: Software Development :: Build Tools", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3 :: Only"]
version = "0.11.0"
readme = "README.md"
packages = [
{ include = "spacefx" },
]
include = [
{path = "spacefx/protos/**/*"},
{path = "spacefx/spacefxClient/*"}
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
pythonnet = "^3.0.3"
grpcio-tools = "^1.26.0"
grpcio = "^1.26.0"
protobuf = "^3.20.1"
[tool.poetry.group.spacefx-dev.dependencies]
pytest = "^7.2.1"
pip = "*"
setuptools = "*"
wheel = "*"
build = "*"
mypy = "*"
mypy-extensions = "*"
mypy-protobuf = "*"
debugpy = "*"
[build-system]
requires = ["poetry>=1.3.2"]
build-backend = "poetry.masonry.api"