-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
80 lines (74 loc) · 2.07 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[tool.poetry]
name = "vast-pipeline"
version = "v1.2.0-dev"
description = "Vast Pipeline code base for processing and analysing telescope images from the Square Kilometre Pathfinder"
authors = ["The VAST Development Team"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.8.0,<3.11"
astropy = "^5.0"
astroquery = "^0.4.4"
bokeh = "2.4.2" # must align with @bokeh/bokehjs version in package.json
cloudpickle = "^1.5.0"
dask = {extras = ["dataframe"], version = "^2022.1.0,<2022.4.2"}
dill = "^0.3.3"
Django = "^3.2.13"
django-crispy-forms = "^1.9.2"
django-environ = "^0.4.5"
djangorestframework = "^3.11.0"
djangorestframework-datatables = "0.5.1"
django-q = "^1.3.3"
django-tagulous = "^1.1.0"
Jinja2 = "^3.0.3"
networkx = "^2.4"
numpy = ">=1.18.1,<1.23"
pandas = "^1.2.0"
psutil = "^5.7.0"
psycopg2 = "^2.8.4"
pyarrow = "^7.0"
scipy = "^1.6.0"
social-auth-app-django = "^3.1.0"
social-auth-core = "^3.3.3"
sqlalchemy = "^1.3.11"
whitenoise = "^5.2.0"
gevent = { version = "^21.1.2", optional = true }
gunicorn = { version = "^20.0.4", optional = true }
forced-phot = { git = "https://github.com/askap-vast/forced_phot.git", tag = "v0.2.0"}
strictyaml = "^1.6.2"
colorcet = "^2.0.6"
matplotlib = "^3.5.0"
holoviews = "^1.14.7"
datashader = "^0.14"
channels = "^3.0.4"
param = "<2.0.0"
[tool.poetry.dev-dependencies]
mkdocs-material = "^9.4"
mkdocstrings = {extras = ["python"], version = "^0.25.0"}
mkdocs-minify-plugin = "^0"
mkdocs-material-extensions = "^1.0.1"
mkdocs-gen-files = "^0"
pygraphviz = "^1.7"
ipdb = "^0.13.6"
ipython = "^7.31.1"
pip-tools = "^5.5.0"
tabulate = "^0.8.9"
django-debug-toolbar = "^3.2"
flake8 = "^3.9.0"
mypy = "^0.910"
black = "^20.8b1"
django-extensions = "^3.1.1"
rope = "^0.18.0"
django-stubs = "^1.9.0"
lightgallery = "^0"
mkdocs-git-revision-date-localized-plugin = "^0"
mike = "^1.1.2"
markdown = "3.3.7"
[tool.poetry.extras]
prod = ["gevent", "gunicorn"]
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[tool.django-stubs]
django_settings_module = "webinterface.settings"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"