sc-kernel 0.4.0__tar.gz → 0.5.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: sc_kernel
3
- Version: 0.4.0
4
- Home-page: https://github.com/capital-G/sc_kernel
3
+ Version: 0.5.0
4
+ Summary: SuperCollider kernel for Jupyter
5
5
  Author: Dennis Scheiba
6
6
  License: BSD
7
7
  Classifier: Programming Language :: Python :: 3
@@ -10,10 +10,22 @@ Classifier: Framework :: IPython
10
10
  Classifier: License :: OSI Approved :: BSD License
11
11
  Classifier: Topic :: System :: Shells
12
12
  Classifier: Topic :: Multimedia :: Sound/Audio :: Sound Synthesis
13
- Requires-Python: >=3.8
13
+ Requires-Python: >=3.10
14
14
  Description-Content-Type: text/markdown
15
- Provides-Extra: dev
16
15
  License-File: LICENSE
16
+ Requires-Dist: metakernel<0.31,>=0.23.0
17
+ Requires-Dist: ipython<10.0,>=4.0
18
+ Requires-Dist: pygments<3.0
19
+ Requires-Dist: jupyterlab<5.0,>=3.0
20
+ Requires-Dist: jupyter_server<3.0,>2.0
21
+ Provides-Extra: dev
22
+ Requires-Dist: coverage==5.2.1; extra == "dev"
23
+ Requires-Dist: flake8<=6.0.0; extra == "dev"
24
+ Requires-Dist: unittest-xml-reporting==3.0.4; extra == "dev"
25
+ Requires-Dist: mypy<=1.0.0; extra == "dev"
26
+ Requires-Dist: pre-commit==2.17.0; extra == "dev"
27
+ Requires-Dist: black<=23.1.0; extra == "dev"
28
+ Dynamic: license-file
17
29
 
18
30
  # Supercollider Jupyter Kernel
19
31
 
@@ -0,0 +1,52 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "sc_kernel"
7
+ version = "0.5.0"
8
+ description = "SuperCollider kernel for Jupyter"
9
+ readme = "README.md"
10
+ license = { text = "BSD" }
11
+ authors = [
12
+ { name = "Dennis Scheiba" }
13
+ ]
14
+ requires-python = ">=3.10"
15
+ dependencies = [
16
+ "metakernel>=0.23.0, <0.31",
17
+ "ipython>=4.0, <10.0",
18
+ "pygments<3.0",
19
+ "jupyterlab>=3.0, <5.0",
20
+ "jupyter_server<3.0, >2.0",
21
+ ]
22
+ classifiers = [
23
+ "Programming Language :: Python :: 3",
24
+ "Operating System :: OS Independent",
25
+ "Framework :: IPython",
26
+ "License :: OSI Approved :: BSD License",
27
+ "Topic :: System :: Shells",
28
+ "Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
29
+ ]
30
+
31
+ [project.optional-dependencies]
32
+ dev = [
33
+ "coverage==5.2.1",
34
+ "flake8<=6.0.0",
35
+ "unittest-xml-reporting==3.0.4",
36
+ "mypy<=1.0.0",
37
+ "pre-commit==2.17.0",
38
+ "black<=23.1.0"
39
+ ]
40
+
41
+ [tool.setuptools]
42
+ packages = ["sc_kernel"]
43
+
44
+ [tool.setuptools.package-data]
45
+ "sc_kernel" = ["images/*.png", "kernel.json"]
46
+
47
+ [tool.setuptools.data-files]
48
+ "share/jupyter/kernels/sc_kernel" = [
49
+ "sc_kernel/kernel.json",
50
+ "sc_kernel/images/logo-32x32.png",
51
+ "sc_kernel/images/logo-64x64.png",
52
+ ]
@@ -1,7 +1,7 @@
1
- Metadata-Version: 2.1
2
- Name: sc-kernel
3
- Version: 0.4.0
4
- Home-page: https://github.com/capital-G/sc_kernel
1
+ Metadata-Version: 2.4
2
+ Name: sc_kernel
3
+ Version: 0.5.0
4
+ Summary: SuperCollider kernel for Jupyter
5
5
  Author: Dennis Scheiba
6
6
  License: BSD
7
7
  Classifier: Programming Language :: Python :: 3
@@ -10,10 +10,22 @@ Classifier: Framework :: IPython
10
10
  Classifier: License :: OSI Approved :: BSD License
11
11
  Classifier: Topic :: System :: Shells
12
12
  Classifier: Topic :: Multimedia :: Sound/Audio :: Sound Synthesis
13
- Requires-Python: >=3.8
13
+ Requires-Python: >=3.10
14
14
  Description-Content-Type: text/markdown
15
- Provides-Extra: dev
16
15
  License-File: LICENSE
16
+ Requires-Dist: metakernel<0.31,>=0.23.0
17
+ Requires-Dist: ipython<10.0,>=4.0
18
+ Requires-Dist: pygments<3.0
19
+ Requires-Dist: jupyterlab<5.0,>=3.0
20
+ Requires-Dist: jupyter_server<3.0,>2.0
21
+ Provides-Extra: dev
22
+ Requires-Dist: coverage==5.2.1; extra == "dev"
23
+ Requires-Dist: flake8<=6.0.0; extra == "dev"
24
+ Requires-Dist: unittest-xml-reporting==3.0.4; extra == "dev"
25
+ Requires-Dist: mypy<=1.0.0; extra == "dev"
26
+ Requires-Dist: pre-commit==2.17.0; extra == "dev"
27
+ Requires-Dist: black<=23.1.0; extra == "dev"
28
+ Dynamic: license-file
17
29
 
18
30
  # Supercollider Jupyter Kernel
19
31
 
@@ -1,7 +1,7 @@
1
1
  LICENSE
2
2
  README.md
3
+ pyproject.toml
3
4
  setup.cfg
4
- setup.py
5
5
  sc_kernel/__init__.py
6
6
  sc_kernel/__main__.py
7
7
  sc_kernel/kernel.json
@@ -1,7 +1,7 @@
1
- metakernel<0.30,>=0.23.0
2
- ipython<9.0,>=4.0
3
- pygments<=2.14.0,>2.1
4
- jupyterlab<4.0,>=2.0
1
+ metakernel<0.31,>=0.23.0
2
+ ipython<10.0,>=4.0
3
+ pygments<3.0
4
+ jupyterlab<5.0,>=3.0
5
5
  jupyter_server<3.0,>2.0
6
6
 
7
7
  [dev]
sc_kernel-0.4.0/setup.py DELETED
@@ -1,66 +0,0 @@
1
- import glob
2
- from setuptools import setup, find_packages
3
- from setuptools.command.install import install
4
-
5
- with open("sc_kernel/__init__.py", "rb") as fid:
6
- for line in fid:
7
- line = line.decode("utf-8") # type: ignore
8
- if line.startswith("__version__"): # type: ignore
9
- version = line.strip().split()[-1][1:-1]
10
- break
11
-
12
- DISTNAME = "sc_kernel"
13
-
14
- DATA_FILES = [
15
- (
16
- "share/jupyter/kernels/sc_kernel",
17
- ["%s/kernel.json" % DISTNAME] + glob.glob("%s/images/*.png" % DISTNAME),
18
- )
19
- ]
20
-
21
-
22
- class install_with_kernel_spec(install):
23
- def run(self):
24
- install.run(self)
25
-
26
-
27
- if __name__ == "__main__":
28
- setup(
29
- name="sc_kernel",
30
- author="Dennis Scheiba",
31
- version=version,
32
- cmdclass={"install": install_with_kernel_spec},
33
- url="https://github.com/capital-G/sc_kernel",
34
- license="BSD",
35
- long_description=open("README.md").read(),
36
- long_description_content_type="text/markdown",
37
- classifiers=[
38
- "Programming Language :: Python :: 3",
39
- "Operating System :: OS Independent",
40
- "Framework :: IPython",
41
- "License :: OSI Approved :: BSD License",
42
- "Topic :: System :: Shells",
43
- "Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
44
- ],
45
- packages=find_packages(include=["sc_kernel", "sc_kernel.*"]),
46
- include_package_data=True,
47
- data_files=DATA_FILES,
48
- install_requires=[
49
- "metakernel>=0.23.0, <0.30",
50
- "ipython>=4.0, <9.0",
51
- "pygments<=2.14.0, >2.1",
52
- "jupyterlab>=2.0, <4.0",
53
- "jupyter_server<3.0, >2.0",
54
- ],
55
- extras_require={
56
- "dev": [
57
- "coverage==5.2.1",
58
- "flake8<=6.0.0",
59
- "unittest-xml-reporting==3.0.4",
60
- "mypy<=1.0.0",
61
- "pre-commit==2.17.0",
62
- "black<=23.1.0",
63
- ]
64
- },
65
- python_requires=">=3.8",
66
- )
File without changes
File without changes
File without changes
File without changes
File without changes