-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (36 loc) · 1.04 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
[project]
name = "k3ng-rotator-python"
version = "2.0.0"
description = "Control a K3NG rotator over serial"
authors = [{name = "Reid Sox-Harris", email="reid@soxharris.com>"}]
requires-python = ">=3.10"
dependencies = ["pyserial (>=3.5,<4.0)", "requests (>=2.31.0,<3.0.0)", "rpyc (>=6.0.0,<7.0)"]
[project.urls]
repository = "https://github.com/eosti/k3ng-rotator-python"
[tool.poetry]
requires-poetry = ">=2.0"
packages = [{include = "k3ng"}]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
mypy = "^1.3.0"
isort = "^5.12.0"
flake8 = "^6.1.0"
pylint = "^3.2.3"
types-requests = "^2.31.0"
types-pyserial = "^3.5.0.8"
sphinx = "^8.1.3"
sphinx-rtd-theme = "^3.0.2"
sphinx-pyproject = "^0.3.0"
sphinx-autobuild = "^2024.10.3"
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.sphinx-pyproject]
github_username = "eosti"
github_repository = "k3ng-rotator-python"
author = "Reid Sox-Harris"
project = "k3ng-rotator-python"
copyright = "%Y Reid Sox-Harris"
language = "en"