Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 28 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "spot_utils"
version = "0.1.0"
description = "A number of helpful utilities for doing cool things with the Boston Dynamics Spot Robot!"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"open3d",
"bosdyn-client",
"bosdyn-mission",
"bosdyn-choreography-client",
"opencv-python",
]

[project.optional-dependencies]
develop = [
"black",
"docformatter",
"isort",
"mypy",
"pylint>=2.14.5",
"pytest-pylint>=0.18.0",
]

[tool.black]
line-length = 88
target-version = ["py38"]
Expand All @@ -10,15 +38,13 @@ extend-exclude = """
)
"""


[tool.isort]
py_version = 38
profile = "black"
multi_line_output = 2
skip_glob = ["venv/*", "spot_utils/third_party/*"]
split_on_trailing_comma = true


[tool.mypy]
strict_equality = true
disallow_untyped_calls = true
Expand All @@ -35,6 +61,5 @@ module = [
]
ignore_missing_imports = true


[tool.pytest.ini_options]
addopts = "--ignore=spot_utils/third_party"
26 changes: 0 additions & 26 deletions setup.py

This file was deleted.