-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.85 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
38
39
40
41
42
[tool.poetry]
# Information about our project.
name = "bell-avr-vmc-sandbox-module"
version = "0.1.0"
description = "Student autonomy module for Bell AVR"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/bellflight/AVR-VMC-Sandbox-Module"
authors = ["Nathan Vaughn <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
# These dependencies are external packages that we download
# and use to help us build our project. Instead of writing the same
# code lots of times, we can download and install the code
# to share it between projects. Additionally, we can use code
# other people have written.
loguru = "0.7.0"
bell-avr-libraries = "0.2.0a4"
[tool.poetry.group.dev.dependencies]
# These dependencies are only installed in a development environment.
# These are tools that help us write better code, but are not needed
# when the code runs.
pre-commit = "3.3.3"
# Required to be able to properly export
# The `typing-extensions` package has the following compatible candidates `[Package('typing-extensions', '4.6.3')]`; but, the exporter dependency walker previously elected `typing-extensions (4.7.0)` which is not compatible with the dependency `typing-extensions (>=4.6.0,<4.7.0)`. Please contribute to `poetry-plugin-export` to solve this problem.
typing-extensions = "4.6.3"
[tool.pyright]
# These settings are required for the `pyright` tool to work
# correctly with `pre-commit`.
typeCheckingMode = "basic"
venvPath = "."
venv = ".venv"
# This enables warnings for missing type hints
reportMissingParameterType = true
[tool.ruff]
# Ignore line too long. In some cases, black doesn't know how
# to wrap it, and it's not a deal breaker.
ignore = ["E501"]