forked from c-wygoda/tle-sat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (55 loc) · 1.12 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "tle-sat"
version = "0.7.0"
description = "TLE Sat Sim"
authors = ["Christian Wygoda <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
skyfield = "^1.48"
shapely = "^2.0.4"
numpy = "^2.2.1"
platformdirs = "^4.2.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
pytest-coverage = "^0.0"
pre-commit = "^3.7.0"
nox = "^2024.4.15"
nox-poetry = "^1.0.3"
[tool.poetry.scripts]
tle = "tle_sat.cli:main"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
extend-ignore = ["E501", "UP007", "UP034"]
select = [
"C9",
"E",
"F",
"I",
"W",
"UP"
]
[tool.ruff.lint.mccabe]
max-complexity = 8
[tool.coverage.report]
show_missing = true
skip_empty = true
sort = "Cover"
omit = [
"**/*_test.py",
"**/conftest.py",
"tle_sat/cli.py",
]
[tool.pytest.ini_options]
addopts="--cov=tle_sat"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
version_scheme = "semver2"
version_provider = "poetry"
update_changelog_on_bump = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"