-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (34 loc) · 869 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
44
45
46
[tool.poetry]
name = "auto-sbatch"
version = "0.4.1"
description = "Create SLURM scripts automatically from your python script."
authors = ["bdvllrs <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "auto_sbatch"}]
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.group.dev.dependencies]
types-pywin32 = "^306.0.0.2"
types-setuptools = "^67.8.0.0"
flake8 = "^6.0.0"
mypy = "^1.4.0"
isort = "^5.13.2"
[tool.poetry.group.test.dependencies]
pytest = "^7.3.2"
mock = "^5.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
register-run = "auto_sbatch.register_run:register_run"
[tool.isort]
profile = "black"
line_length = 88
py_version = 311
[tool.black]
line-length = 88
[tool.mypy]
ignore_missing_imports = true
install_types = true
check_untyped_defs = true