-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (42 loc) · 1017 Bytes
/
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "radio_stats"
authors = [
{name = "Christian Arauner", email = "[email protected]"},
]
description = "Package to analyze images of radio galaxies"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/radionets-project/radio_stats"
[options]
install_requires = [
"numpy",
"matplotlib",
"scikit-learn",
"tqdm",
"gaussfitter@git+https://github.com/keflavich/gaussfitter"
]
[tool.setuptools_scm]
write_to = "radio_stats/_version.py"
[tool.setuptools.packages.find]
where = ["."]
[tool.ruff]
target-version = "py310"
line-length = 88
[tool.ruff.lint]
extend-select = [
"I", # isort
]
ignore = []
fixable = ["ALL"]
unfixable = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
skip-magic-trailing-comma = false