-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.2 KB
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sc_kernel"
version = "0.5.0"
description = "SuperCollider kernel for Jupyter"
readme = "README.md"
license = { text = "BSD" }
authors = [
{ name = "Dennis Scheiba" }
]
requires-python = ">=3.10"
dependencies = [
"metakernel>=0.23.0, <0.31",
"ipython>=4.0, <10.0",
"pygments<3.0",
"jupyterlab>=3.0, <5.0",
"jupyter_server<3.0, >2.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Framework :: IPython",
"License :: OSI Approved :: BSD License",
"Topic :: System :: Shells",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
]
[project.optional-dependencies]
dev = [
"coverage==5.2.1",
"flake8<=6.0.0",
"unittest-xml-reporting==3.0.4",
"mypy<=1.0.0",
"pre-commit==2.17.0",
"black<=23.1.0"
]
[tool.setuptools]
packages = ["sc_kernel"]
[tool.setuptools.package-data]
"sc_kernel" = ["images/*.png", "kernel.json"]
[tool.setuptools.data-files]
"share/jupyter/kernels/sc_kernel" = [
"sc_kernel/kernel.json",
"sc_kernel/images/logo-32x32.png",
"sc_kernel/images/logo-64x64.png",
]