-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 852 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 852 Bytes
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
[tool.poetry]
name = "pyra2yr"
version = "0.0.0"
description = "Python interface for ra2yrproto"
authors = ["shmocz <[email protected]>"]
license = "GPL3"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
numpy = "^1.26.2"
aiohttp = "^3.9.1"
protobuf = "4.25.1"
pyyaml = "^6.0.1"
coverage = "^7.4.0"
ra2yrproto = { url = "https://github.com/shmocz/ra2yrproto/releases/download/v5/ra2yrproto-5-py3-none-any.whl" }
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.poetry.group.dev.dependencies]
black = "^23.12.0"
pylint = "3.0.3"
pylint-protobuf = "0.22.0"
isort = "^5.13.2"
docformatter = "^1.7.5"
[tool.poetry-dynamic-versioning]
enable = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"