-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
40 lines (35 loc) · 1.18 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "jjava"
requires-python = ">=3.8"
description = "A Jupyter kernel for Java notebooks"
authors = [
{ name = "Andrus Adamchik", email = "[email protected]" }
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["windows", "macos", "linux", "jupyter", "java", "jupyter-kernels", "pip"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Java",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows"
]
dynamic = ["version"]
[project.urls]
Documentation = "https://dflib.org/jjava/docs/1.x/"
Repository = "https://github.com/dflib/jjava"
Download = "https://github.com/dflib/jjava/releases"
Issues = "https://github.com/dflib/jjava/issues"
Changelog = "https://github.com/dflib/jjava/blob/main/RELEASE-NOTES.md"
[tool.setuptools.packages.find]
where = ["pip"]
include = ["jjava"]
[tool.setuptools_scm]
version_file = "pip/jjava/_version.py"
[tool.setuptools.data-files]
"share/jupyter/kernels/java" = ["kernelspec/java/*"]