-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
43 lines (32 loc) · 904 Bytes
/
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
[tool.poetry]
name = "cult-cargo"
version = "0.1.3"
description = "Curated cargo of standard radio astronomy packages for stimela 2.0"
authors = ["Oleg Smirnov, Sphesihle Makhathini"]
license = "MIT"
readme = "README.md"
packages = [{include = "cultcargo"}]
[tool.poetry.dependencies]
python = "^3.8"
stimela = "^2.0.1"
requests = "^2.0"
[tool.poetry.scripts]
build-cargo = "cultcargo.builder.build_cargo:driver"
[tool.poetry.group.builder]
optional = true
[tool.poetry.group.builder.dependencies]
click = "^8.1"
requests = "^2.30.0"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = "^7.1.3"
flake8 = "*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ipython = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
## add section for dev component which installs builder and Dockerfiles