Spaces:
Runtime error
Runtime error
File size: 1,650 Bytes
09c3816 dc999e2 09c3816 dc999e2 |
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
[build-system]
requires = ["hatchling >=1.5"]
build-backend = "hatchling.build"
[project]
name = "codeql_kernel"
description = "A Jupyter kernel for CodeQL"
license = {file = "LICENSE.txt"}
authors = [{name = "'KhulnaSoft DevOps'", email = "[email protected]"}]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: System :: Shells",
]
requires-python = ">=3.7"
dependencies = [
"metakernel >=0.24.0",
"jupyter_client >=4.3.0",
"pandas",
"tree_sitter",
"ipykernel",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.optional-dependencies]
test = ["pytest", "nbconvert", "jupyter_kernel_test", "nbconvert"]
[tool.hatch.build.targets.wheel.shared-data]
"jupyter-data/share" = "share"
[tool.hatch.build.targets.sdist]
artifacts = ["jupyter-data"]
include = [
"/jupyter-data",
"/codeql_kernel",
"/*.md"
]
[tool.hatch.version]
path = "codeql_kernel/_version.py"
source = "code"
[tool.jupyter-releaser]
skip = ["check-links"]
[tool.jupyter-releaser.hooks]
after-prep-git = ["make data-files"]
[tool.tbump.version]
current = "0.0.1"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
'''
[tool.tbump.git]
message_template = "Bump to {new_version}"
tag_template = "v{new_version}"
[[tool.tbump.file]]
src = "codeql_kernel/_version.py" |