-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (68 loc) · 1.79 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
[tool.poetry]
name = "dask-memusage-gpus"
version = "1.0.1"
description = "A Dask Scheduler Plugin to monitor GPU memory usage for tasks"
authors = ["Julio Faracco <[email protected]>"]
maintainers = ["Julio Faracco <[email protected]>"]
license = "MIT"
homepage = "https://github.com/discovery-unicamp/dask-memusage-gpus"
repository = "https://github.com/discovery-unicamp/dask-memusage-gpus"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Development Status :: 1 - Planning",
"Environment :: GPU :: NVIDIA CUDA",
]
readme="README.md"
exclude = ["tests/*", "docs/*"]
packages = [
{ include = "dask_memusage_gpus" },
{ include = "dask_memusage_gpus_plugin.py" },
]
[tool.poetry.dependencies]
dask = "*"
distributed = "*"
lxml = "*"
openpyxl = "*"
pandas = "*"
pyarrow = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
coverage = "*"
flake8 = "*"
interrogate = "*"
isort = "*"
mock = "*"
mypy = "*"
parameterized = "*"
pytest = "*"
pytest-cov = "*"
xlsxwriter = "*"
wheel = "*"
[tool.poetry.group.docs.dependencies]
sphinx = "*"
sphinx-autoapi = "*"
sphinx_rtd_theme = "*"
nbsphinx = "*"
pandoc = "*"
[tool.isort]
profile = "black"
[tool.coverage.paths]
source = ["dask-memusage-gpus", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["dask-memusage-gpus"]
[tool.coverage.report]
exclude_also = [
"except ImportError",
]
[build-system]
requires = ["poetry-core>=1.1.10"]
build-backend = "poetry.core.masonry.api"