-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
95 lines (85 loc) · 2.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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.black]
line-length = 100
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.idea
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| \.vscode
| \.nox
| \docs
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[tool.poetry]
name = "syndeo"
version = "0.1.0"
description = "A template for setting up ray multi-node processing on SLURM."
authors = ["William Li"]
readme = "README.md"
packages = [{include = "src"}]
[tool.poetry.scripts]
syndeo = "main:app"
[tool.poetry.dependencies]
poetry = "^1.4.2"
python = "^3.10"
ray = "^2.23.0"
trogon = "^0.5.0"
typer = {version ="^0.9.0", extras = ["all"]}
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.cicd.dependencies]
black = "*"
mypy = "*"
nox = "*"
pre-commit = "*"
[tool.poetry.group.dev.dependencies]
dm-tree = "^0.1.8"
gputil = "^1.4.0"
gymnasium = {version = "0.29.0", extras = ["classic-control"]}
lz4 = "^4.3.2"
nox = "^2023.4.22"
numpy = "1.26.4"
pandas = "^2.0.3"
pre-commit = "*"
pydantic = "^1.10.9"
pytest = "*"
ray = {version = "2.23.0", extras = ["default", "tune"]}
scikit-image = "^0.21.0"
tabulate = "^0.9.0"
tensorboard = "^2.13.0"
torch = "2.2.0"
[tool.poetry.group.doc.dependencies]
myst-parser = "*"
pydata-sphinx-theme = "*"
sphinx-book-theme = "*"
sphinx-design = "*"
[tool.poetry.group.test.dependencies]
allure-pytest = "*"
pytest = "*"
pytest-clarity = "^1.0.1"
pytest-cov = "*"
pytest-html = "*"
pytest-memray = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"