-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
82 lines (68 loc) · 1.9 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "rolf"
description = "RadiO gaLaxy classiFication (ROLF) using a ResNet"
readme = "README.md"
authors = [{ name = "Anno Knierim and Christian Arauner" }]
license = { text = "MIT" }
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Development Status :: 3 - Alpha",
]
dynamic = ["version"]
requires-python = ">=3.11"
dependencies = [
"astropy >=6.1.0",
"matplotlib ~=3.0",
"numpy ~=1.16",
"torch",
"torchvision",
"pyside6",
]
[project.scripts]
rolf-info = "rolf.info:main"
rolf-train = "rolf.tools.start_training:main"
rolf-data = "rolf.tools.get_data:main"
rolf-view = "rolf.tools.viewer:main"
rolf-unpack = "rolf.tools.unpack:main"
rolf-optim = "rolf.tools.rolf_optim:main"
romf-train = "rolf.tools.romf:main"
romf-optim = "rolf.tools.romf_optim:main"
[project.optional-dependencies]
dev = ["pre-commit", "setuptools_scm[toml]"]
all = ["rolf[dev]"]
[project.urls]
repository = "https://github.com/aknierim/rolf"
[tool.setuptools_scm]
write_to = "rolf/_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
[tool.ruff.lint.isort]
known-first-party = ["ml_project"]