-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 826 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 826 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
[build-system]
requires = [
"setuptools>=61",
"wheel",
]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name='scorep-jupyter'
version='1.2.0'
authors=[
{name='Elias Werner',email='elias.werner@tu-dresden.de'},
]
description='This is a Jupyter Python Kernel for Score-P instrumentation. It supports performance data recording with Score-P for fine-grained performance analysis.'
readme={ file='README.md', content-type="text/markdown"}
license={ file="LICENSE" }
requires-python = ">=3.8"
classifiers=[
"Programming Language :: Python :: 3",
]
dependencies = [
"ipykernel",
"jupyter-client",
"astunparse",
"dill",
"nbformat",
"scorep"
]
[project.urls]
homepage = "https://github.com/score-p/scorep_jupyter_kernel_python"
repository = "https://github.com/score-p/scorep_jupyter_kernel_python"