-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (60 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
73 lines (60 loc) · 1.32 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "datatrail-cli"
version = "0.10.1"
description = "CHIME/FRB Datatrail CLI"
authors = [
{ name = "CHIME FRB Project Office" },
{ name = "Tarik Zegmott", email = "tarik.zegmott@mcgill.ca" },
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.8.1,!=3.9.0,!=3.9.1,<4.0"
dependencies = [
"click>=8.1.3",
"requests>=2.29.0",
"rich>=13.3.5",
"pyaml>=21.10.1",
"cadcutils>=1.5.1.1",
"cadcdata>=2.5.0",
"cadctap>=0.9.11",
"mergedeep>=1.3.4",
"dill>=0.3.6",
"lxml>=4.9.2",
"click-aliasing>=1.0.0",
"tenacity>=8.0.0",
]
[project.scripts]
datatrail = "dtcli.cli:cli"
[tool.poetry]
packages = [{ include = "dtcli" }]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
mypy = "^1.2.0"
types-requests = "^2.30.0.0"
pre-commit = "^3.3.1"
pytest = "^7.3.1"
pytest-cov = "^4.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.3"
mkdocs-material = "^9.1.11"
mkdocstrings = "^0.21.2"
mkdocs-click = "^0.8.0"
termynal = "^0.10.1"
[tool.flake8]
max-line-length = 89
max-complexity = 15
[tool.black]
line-length = 89
[tool.pycodestyle]
max-line-length = 89
ignore = "E203"
[tool.isort]
profile = "black"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["dtcli"]