-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 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
45
46
[tool.poetry]
name = "yaptide-converter"
version = "1.0.0"
description = "Yet Another Particle Transport IDE - converter"
authors = ["yaptide team"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
readme = "README.md"
repository = "https://github.com/yaptide/converter"
homepage = "https://github.com/yaptide/converter"
packages = [{include = "converter"}]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/yaptide/converter/issues"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
[tool.poetry.scripts]
yaptide-converter = "converter.main:main"
[tool.poetry.group.test.dependencies]
pytest = "8.3.4"
pre-commit = "4.0.1"
# scipy is needed in unit tests to cross check if rotation method works properly
scipy = "1.13.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pycodestyle]
max-line-length = "120"
[tool.yapf]
based_on_style = "pep8"
column_limit = "120"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
testpaths = ["tests"]