-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 805 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 = ["hatchling", "ipykernel"]
build-backend = "hatchling.build"
[project]
name = "postgres_kernel"
dynamic = ["version"]
authors = [{name = "Brian Schiller", email = "bgschiller@gmail.com"}]
dependencies = [
'psycopg2>=2.6',
'tabulate>=0.7.5',
'jupyter-client',
'ipykernel'
]
classifiers = [
'Framework :: IPython',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: System :: Shells',
]
readme = "README.md"
[project.urls]
Source = "https://github.com/bgschiller/postgres_kernel"
[tool.hatch.version]
path = "postgres_kernel/_version.py"
# Used to call hatch_build.py
[tool.hatch.build.hooks.custom]
[tool.hatch.build.targets.wheel.shared-data]
"data_kernelspec" = "share/jupyter/kernels/postgres_kernel"