-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (34 loc) · 941 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
[build-system]
requires = [
"setuptools>=61",
"wheel",
]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name='jumper-kernel'
version='1.1.1'
authors=[
{name='Elias Werner',email='[email protected]'},
]
description='This is a Jupyter Python Kernel for performance engineering. Beside performance data as CPU, GPU, memory utilization it supports performance data recording with Score-P.'
readme={ file='README.md', content-type="text/markdown"}
license={ file="LICENSE" }
requires-python = ">=3.8"
classifiers=[
"Programming Language :: Python :: 3",
]
dependencies = [
"ipykernel",
"ipywidgets",
"ipympl",
"jupyter-client",
"astunparse",
"dill",
"itables",
"matplotlib",
"pandas",
"pynvml" # we need that only for Nvidia GPU systems
]
[project.urls]
homepage = "https://github.com/score-p/scorep_jupyter_kernel_python"
repository = "https://github.com/score-p/scorep_jupyter_kernel_python"