-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from ratt-ru/deps-update
Dependancy and deployment update
- Loading branch information
Showing
6 changed files
with
141 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
[tool.poetry] | ||
name = "shadems" | ||
version = "0.5.2" | ||
description = "Rapid Measurement Set plotting with dask-ms and datashader" | ||
authors = ["Ian Heywood & RATT <ian.heywood@physics.ox.ac.uk>"] | ||
license = "GPL-2.0-only" | ||
homepage = "https://github.com/ratt-ru/shadeMS" | ||
repository = "https://github.com/ratt-ru/shadeMS" | ||
readme = "README.md" | ||
keywords = ["Astronomy", "Visualisation", "Packaging"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python", | ||
"Topic :: Scientific/Engineering :: Astronomy" | ||
] | ||
packages = [ | ||
{ include = "shade_ms" }, | ||
] | ||
|
||
[tool.poetry.scripts] | ||
shadems = {reference = "bin/shadems", type = "file"} | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
datashader = "^0.13.0" | ||
dask-ms = { version = "^0.2.15", extras = ["xarray"] } | ||
holoviews = "^1.14.9" | ||
matplotlib = { version = "^3.6.0" } | ||
cmasher = "^1.6.3" | ||
future-fstrings = "^1.2.0" | ||
requests = "^2.27.1" | ||
numpy = "1.23.5" # Datashader installs the latest numpy which is in conflict with <=1.35.5 required by numba | ||
dask = { extras = ["array"], version = "2022.9.1" } # Datashader installs the latest dask which is in conflict with <2023.0.0 required by dask-ms[array] | ||
pytest = { version = "^7.2.2", optional=true } | ||
pytest-flake8 = { version = "^1.1.1", optional=true } | ||
|
||
[tool.poetry.extras] | ||
testing = ["pytest", "pytest-flake8"] | ||
|
||
[build-system] | ||
requires = ["setuptools", "poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters