-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (84 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
95 lines (84 loc) · 1.85 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "rammp"
version = "0.1.0"
description = "Code for RAMMP."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"multiprocess",
"pyyaml",
"rospkg",
"catkin_pkg",
"empy",
"paramiko",
"PyAudio",
]
[project.optional-dependencies]
full = [
"pybullet_helpers@git+https://github.com/Princeton-Robot-Planning-and-Learning/prpl-mono.git#subdirectory=pybullet-helpers",
"pyaudio",
"imageio[ffmpeg]",
"relational_structs@git+https://github.com/Princeton-Robot-Planning-and-Learning/prpl-mono.git#subdirectory=relational-structs",
"prpl-utils@git+https://github.com/Princeton-Robot-Planning-and-Learning/prpl-mono.git#subdirectory=prpl-utils",
"tomsutils@git+https://github.com/tomsilver/toms-utils.git",
"opencv-python",
"scikit-learn",
"scikit-image",
"yacs",
"kornia",
"open3d",
"face-alignment",
"numpy",
"defusedxml",
"twisted",
"pyOpenSSL",
"autobahn",
"tornado",
"bson",
"gTTS",
"playsound",
"black",
]
controller = [
"protobuf==3.19.0",
]
dev = [
"black",
"docformatter",
"isort",
"mypy",
"pylint>=2.14.5",
"pytest-pylint>=0.18.0",
"pytest>=7.2.2",
]
all = ["rammp[full,dev]"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
pybullet_helpers = ["py.typed"]
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.isort]
py_version = 310
profile = "black"
multi_line_output = 2
skip_glob = ["venv/*"]
split_on_trailing_comma = true
[tool.mypy]
strict_equality = true
disallow_untyped_calls = true
warn_unreachable = true
exclude = [
"venv/*",
]
[[tool.mypy.overrides]]
module = [
"pybullet.*",
"pyaudio.*",
"scipy.*",
]
ignore_missing_imports = true