forked from aknierim/thesis_scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
87 lines (74 loc) · 1.84 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
83
84
85
86
87
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "thesis_scripts"
description = "Scripts for my master's thesis."
readme = "README.rst"
authors = [
{ name = "Anno Knierim" }
]
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.10"
dependencies = [
"astropy>=6.1.0",
"matplotlib~=3.0",
"numpy~=1.16",
"pandas >=2.0",
"pyvisgen@git+https://github.com/radionets-project/pyvisgen",
"radiotools@git+https://github.com/radionets-project/radiotools",
"rich",
"casatools",
"colorspacious",
"colour",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"setuptools_scm[toml]",
]
all = [
"thesis_scripts[dev]"
]
[project.urls]
repository = "https://github.com/aknierim/thesis_scripts"
[tool.setuptools_scm]
write_to = "thesis_scripts/_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 = [
"pyvisgen",
"radiotools",
"radionets"
]