-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (71 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
77 lines (71 loc) · 1.86 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
[build-system]
requires = ["setuptools>=68", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "projectairsim"
version = "0.1.1"
description = "Project AirSim client package"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.7,<4"
license = { text = "MIT" }
authors = [{ name = "IAMAI Simulations" }]
keywords = ["simulation", "uav", "drone", "airsim", "robotics"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Visualization"
]
dependencies = [
"pynng>=0.5.0",
"msgpack>=1.0.5",
"opencv-python>=4.2.0.32",
"numpy",
"matplotlib",
"commentjson>=0.9.0",
"jsonschema>=4.4.0",
"inputs",
"pqdict",
"cryptography",
"pykml",
"junit-xml",
"jsonlines",
"Shapely",
"azure-storage-blob",
"open3d>=0.16.0"
]
[project.optional-dependencies]
autonomy = [
"torch>=1.8.0",
"torchvision>=0.9.0",
"scikit-image>=0.18.1",
"Pillow<=8.2.0",
"gym==0.18.3",
"onnxruntime-gpu",
"pydantic",
"python-multipart",
"fastapi",
"uvicorn",
]
bonsai = [
"microsoft-bonsai-api==0.1.2",
"python-dotenv==0.13.0",
"bonsai-cli==1.0.8",
"msal-extensions==0.1.3",
]
datacollection = [
"albumentations==1.3.0",
]
[tool.setuptools]
# Source layout: packages live under src/
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["projectairsim*"]
# Include non-Python data files inside the wheels/sdist.
[tool.setuptools.package-data]
# Adjust these globs if your schemas/assets live elsewhere under the package.
"projectairsim" = ["schema/*.jsonc", "**/schema/*.jsonc"]
"projectairsim.autonomy.gym_envs" = ["sim_config/*.jsonc", "*.ink"]