generated from interTwin-eu/itwinai-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.33 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pulsar-plugin"
version = "0.1.0"
description = "Custom itwinai plug-in for radio astronomy pulsar detection use-case"
requires-python = ">=3.10"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Alex Krochak", email = "o.krochak@fz-juelich.de" }]
dependencies = [
"itwinai[torch]>=0.3.0",
"pytest>=8.3.4",
"pulsarsa @ git+https://gitlab.dzastro.de/punch/ml-ppa/pulsarsa@main",
"pulsardt @ git+https://gitlab.dzastro.de/punch/ml-ppa/pulsardt@main",
"ipywidgets",
"tqdm>=4.65",
"numpyencoder>=0.3.0",
"pyquaternion>=0.9.9",
"scikit-image>=0.22.0",
"pyqt6>=6.0",
"colorama>=0.4.6",
"black>=25.1.0",
"isort>=6.0.1",
]
[tool.setuptools.packages.find]
# Declare this package as part of the `itwinai.plugins` namespace
where = ["src"]
# Make sure to list all the plugin subfolders here,
# otherwise the plugin may not be installed correctly!
include = [
"itwinai.plugins.pulsar",
]
# Ruff configuration: https://docs.astral.sh/ruff/configuration/
[tool.ruff]
line-length = 95
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E203"]
fixable = ["ALL"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"