-
Notifications
You must be signed in to change notification settings - Fork 179
/
pyproject.toml
49 lines (43 loc) · 1 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
43
44
45
46
47
48
49
[project]
name='laika'
version='0.0.1'
description="GNSS library for use with the comma.ai ecosystem"
authors = [{name='comma.ai', email='[email protected]'}]
requires-python = '>= 3.8'
license = {text = "MIT License"}
dependencies = [
'numpy',
'certifi',
'requests',
'scipy',
'pycurl',
'tqdm',
'hatanaka',
'pycapnp',
]
classifiers = [
'Development Status :: 4 - Beta',
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: System :: Hardware",
]
[project.urls]
Homepage = 'https://github.com/commaai/laika'
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = [ "." ]
[tool.uv]
dev-dependencies = [
'pytest',
'parameterized'
]
# https://docs.astral.sh/ruff/configuration/
[tool.ruff]
line-length = 160
target-version="py311"
[tool.ruff.lint]
select = ["E", "F", "W", "PIE", "C4", "ISC", "RUF100", "A"]
ignore = ["W292", "E741", "E402", "C408", "ISC003"]
flake8-implicit-str-concat.allow-multiline=false