forked from mila-iqia/milatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (40 loc) · 1.08 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
[tool.poetry]
name = "milatools"
version = "0.0.18"
description = "Tools to work with the Mila cluster"
authors = ["Olivier Breuleux <breuleux@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/mila-iqia/milatools"
repository = "https://github.com/mila-iqia/milatools"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
blessed = "^1.18.1"
coleo = "^0.3.0"
sshconf = "^0.2.2"
questionary = "^1.10.0"
Fabric = "^2.7.0"
[tool.poetry.dev-dependencies]
black = ">= 21.8b0"
isort = ">= 5.9.3"
flake8 = {version = ">= 6.0.0", python = "^3.8.1"}
Sphinx = "^5.0.1"
sphinx-rtd-theme = "^1.0.0"
pytest = ">=7.2.0"
pytest-cov = ">=2.8.1"
coverage = {extras = ["toml"], version = "^5.0.3"}
toml = "^0.10.0"
[tool.poetry.scripts]
mila = "milatools.cli.__main__:main"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pytest-regressions = "^2.4.2"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
combine_as_imports = true
[tool.pytest.ini_options]
addopts = "--doctest-modules"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"