-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (42 loc) · 1.3 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "visread"
readme = "README.md"
dynamic = ["version"]
authors = [{name="Ian Czekala", email="[email protected]"}]
description="Tools to read and process interferometric visibilities from Measurement Sets"
requires-python = ">3.6"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = ["numpy", "scipy", "astropy"]
[project.optional-dependencies]
casa = ["casatools", "casadata", "casatasks"]
test = ["pytest", "matplotlib"]
docs = ["casatools",
"casadata",
"casatasks",
"sphinx>=2.3.0",
"nbsphinx",
"sphinx_material",
"sphinx_copybutton",
"sphinx_book_theme>=0.9.3",
"jupyter",
"jupytext",
"ipython!=8.7.0", # broken version for syntax higlight https://github.com/spatialaudio/nbsphinx/issues/687
"matplotlib",
"myst-nb",
"jupyter-cache",
"pylint",
"black"]
[project.urls]
Homepage = "https://mpol-dev.github.io/visread/"
Issues = "https://github.com/MPoL-dev/visread/issues"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/visread/visread_version.py"