-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 854 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 854 Bytes
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 = "rssched"
version = "0.2.0"
description = "Analysis and visualization of results from the scheduler service."
authors = ["Merlin Unterfinger"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.26.4"
pandas = "^2.2.1"
plotly = "^5.20.0"
typer = "^0.12.1"
pydantic = "^2.6.4"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
black = {extras = ["jupyter"], version = "^24.4.2"}
isort = "^5.13.2"
mypy = "^1.9.0"
flake8 = "^7.0.0"
pydocstyle = "^6.3.0"
ipykernel = "^6.29.5"
[tool.poetry.scripts]
rssched-plot = 'rssched.cli:app'
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
[tool.pydocstyle]
match-dir = "[^\\.][^test].*"
convention = "google"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"