-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.46 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
57
[tool.poetry]
name = "vast-post-processing"
version = "v2.1.1-dev"
description = ""
authors = ["Andrew O'Brien <obrienan@uwm.edu>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">3.9.0, <3.11"
pandas = "^1.3.3"
MOCPy = "^0.8.5"
typer = "^0.4.0"
astropy = "^5.3.1"
scipy = "^1.7.1"
numpy = "^1.21.2"
schwimmbad = "^0.3.2"
radio-beam = "^0.3.3"
mpi4py = {version = "^3.1.3", optional = true}
sphinx = "^7.0.1"
numpydoc = "^1.5.0"
pydata-sphinx-theme = "^0.13.3"
pytest = "^7.4.0"
racs-tools = "^4"
pyyaml = "^6.0.1"
uncertainties = "^3.1.7"
statsmodels = "^0.14.4"
[tool.poetry.dev-dependencies]
mypy = "^0.910"
black = "^22.3.0"
flake8 = "^3.9.2"
rope = "^0.20.1"
ipython = "^7.28.0"
debugpy = "^1.5.1"
[tool.poetry.extras]
mpi = ["mpi4py"]
[tool.poetry.scripts]
link_neighbours = "vast_post_processing.cli.link_neighbours:app"
convolve_neighbours = "vast_post_processing.cli.convolve_neighbours:app"
swarp_neighbours = "vast_post_processing.cli.swarp:app"
selavy_prepare = "vast_post_processing.cli.selavy_combined:app"
crop_fields = "vast_post_processing.cli.run_crop:app"
vast_post_processing = "vast_post_processing.cli.vast_post_processing:app"
pull_test_data = "tests.data.pull_data:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poe.poetry_hooks]
post_install = "track"
[tool.poe.tasks.track]
script = "vast_post_processing.utils.misc:write_git_hash()"
help = "Track the git hash of this project in corrected FITS headers"