-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (41 loc) · 1.1 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
[tool.poetry]
name = "maxray"
version = "0.7.0"
description = ""
authors = ["blepabyte <[email protected]>"]
readme = "README.md"
[tool.poetry.urls]
Homepage = "https://github.com/blepabyte/maxray"
Source = "https://github.com/blepabyte/maxray"
Tracker = "https://github.com/blepabyte/maxray/issues"
[tool.poetry.dependencies]
python = "^3.11"
result = ">=0.17.0"
loguru = ">=0.7.2"
pyarrow = ">=18.0.0"
watchfiles = "^0.24.0"
click = "^8.1.7"
rich = "^13.7.1"
[tool.poetry.scripts]
xpy = "maxray.runner.__main__:main"
maxray = "maxray.__main__:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pandas = "^2.2.3"
[tool.poetry.group.all.dependencies]
ipdb = "^0.13.13"
networkx = "^3.3"
rerun-sdk = "^0.20.0"
cmap = "^0.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version"
]
branch = "master"
upload_to_PyPI = false
upload_to_release = true
build_command = "pip install poetry && poetry build"
commit_author = "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"