-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (32 loc) · 847 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
[tool.poetry]
name = "neuromancer"
version = "0.3.0"
description = ""
authors = ["Sami Jawhar <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8.0,<3.10.0"
click = "^8.0.0"
dvc = "^2.9.4"
gitpython = "^3.1.24"
pyyaml = ">=5.4.0"
[tool.poetry.group.dev.dependencies]
black = "22.3.0"
pytest = "^7.1.2"
pytest-mock = "^3.7.0"
pytest-watch = "^4.2.0"
[tool.poetry.group.wintermute]
optional = true
[tool.poetry.group.wintermute.dependencies]
kubernetes = "^23.6.0"
dvc = { version = "^2.9.4", extras = ["s3", "ssh"] }
[tool.poetry.scripts]
neuromancer = "neuromancer.cli:neuromancer"
wintermute = "neuromancer.cli:wintermute"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ["py38"]
[tool.isort]
profile = "black"
known_local_folder = "neuromancer"