-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.45 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
[tool.poetry]
authors = ["Nicholas Schaub <[email protected]>", "Camilo Velez <[email protected]>"]
description = "Python API to configure and run Polus Plugins."
license = "License :: OSI Approved :: MIT License"
maintainers = ["Camilo Velez <[email protected]>"]
name = "polus-tabular"
packages = [{include = "polus", from = "src"}]
readme = "README.md"
repository = "https://github.com/PolusAI/tabular-tools"
version = "0.1.1"
[tool.poetry.dependencies]
python = ">=3.9, <3.12"
click = "^8.1.3"
cwltool = "^3.1.20230513155734"
fsspec = "^2023.6.0"
pydantic = ">=1.10.0"
pygithub = "^1.58.2"
python-on-whales = "^0.68.0"
pyyaml = "^6.0"
tqdm = "^4.65.0"
validators = "^0.22.0"
xmltodict = "^0.13.0"
[tool.poetry.group.dev.dependencies]
python = ">=3.9, <3.12"
black = "^23.3.0"
bump2version = "^1.0.1"
datamodel-code-generator = "^0.23.0"
flake8 = "^6.0.0"
fsspec = "^2023.1.0"
mypy = "^1.4.0"
nox = "^2022.11.21"
poetry = "^1.3.2"
pre-commit = "^3.3.3"
pydantic = ">=1.10"
pytest = "^7.3.2"
pytest-benchmark = "^4.0.0"
pytest-cov = "^4.1.0"
pytest-sugar = "^0.9.7"
pytest-xdist = "^3.3.1"
python-on-whales = "^0.68.0"
pyyaml = "^6.0"
ruff = "^0.0.274"
tqdm = "^4.64.1"
xmltodict = "^0.13.0"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
markers = [
"repo: marks tests that validate plugin.json files in local repo",
]