-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.14 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
[tool.poetry]
name = "stimela"
version = "2.0.2"
description = "Framework for system agnostic pipelines for (not just) radio interferometry"
authors = ["Oleg Smirnov and RATT <[email protected]>", "Sphesihle Makhathini <[email protected]>"]
readme = "README.rst"
license = "GNU GPL v2"
include = [{ path = "tests" }]
packages = [
{include = "stimela"},
{include = "scabha"},
{include = "stimela_tests", from = "tests" },
{include= "scabha_tests", from = "tests" },
]
[tool.poetry.dependencies]
python = "^3.9"
munch = "^2.5.0"
omegaconf = "^2.1"
importlib_metadata = { version = "4.13.0", python = "3.7" }
click = "^8.1.3"
pyparsing = "^3.0.9"
pydantic = "^1.10.2"
psutil = "^5.9.3"
rich = "^13.7.0"
dill = "^0.3.6"
typeguard = "^4.2.1"
[tool.poetry.scripts]
stimela = "stimela.main:cli"
[build-system]
requires = ["setuptools", "poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = "^7.1.3"
flake8 = "*"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = "^5.3.0"
sphinx-copybutton = "^0.5.0"
furo = "^2022.9.15"