-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.18 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
54
55
56
[project]
name = "sam45"
version = "1.0.1"
description = "NRO/SAM45 log reader"
readme = "README.md"
keywords = [
"astronomy",
"nro",
"python",
"radio-astronomy",
"sam45",
]
requires-python = ">=3.10,<3.15"
dependencies = [
"numpy>=2,<3",
"tomli>=2,<3",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[[project.authors]]
name = "Akio Taniguchi"
email = "a-taniguchi@mail.kitami-it.ac.jp"
[project.license]
file = "LICENSE"
[project.urls]
homepage = "https://astropenguin.github.io/sam45"
repository = "https://github.com/astropenguin/sam45"
[dependency-groups]
dev = [
"black>=25,<26",
"ipython>=8,<10",
"myst-parser>=3,<5",
"pandas-stubs>=2,<3",
"pydata-sphinx-theme>=0.16,<1.0",
"pyright>=1,<2",
"pytest>=9,<10",
"sphinx>=8,<9",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
typeCheckingMode = "strict"