Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move setup.py into pyproject.toml #6

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
move setup.py into pyproject.toml
tomsilver committed Mar 16, 2023
commit b20c0c84291ef2e2100bc7c98e4be09f51a32697
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"]
@@ -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
@@ -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.