-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (48 loc) · 1.26 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=70.0.0", "setuptools-scm", "wheel"]
[project]
authors = [
{name = "Miguel Cárcamo", email = "miguel.carcamo@manchester.ac.uk"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"almatasks==0.0.0.3",
"astropy==6.1.0",
"casafeather==0.0.22",
"casalogger==1.0.19",
"casampi==0.5.5",
"casaplotms==2.4.3",
"casaplotserver==1.8.2",
"casashell==6.6.4.34",
"casatablebrowser==0.0.35",
"casatasks==6.6.4.34",
"casatestutils==6.6.4.34",
"casatools==6.6.4.34",
"casaviewer==2.1.4",
"numpy==1.26.0",
"python-casacore==3.5.2",
"reproject==0.11.0",
"scipy==1.11.4"
]
description = "A Python object oriented framework to do radio-interferometric self-calibration"
dynamic = ["version"]
license = {file = "LICENSE"}
maintainers = [
{name = "Miguel Cárcamo", email = "miguel.carcamo@manchester.ac.uk"}
]
name = "snow"
readme = "README.md"
requires-python = ">=3.10, <3.11"
[project.urls]
Source = "https://github.com/miguelcarcamov/snow"
[tool.setuptools.packages.find]
include = ["snow*"]
namespaces = false
where = ["src"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
write_to = "src/snow/_version.py"