Skip to content

Commit

Permalink
Merge pull request #29 from blink1073/use-hatch
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored May 17, 2022
2 parents bd7f53e + b16e1b3 commit 6787dd1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
requires = ["hatchling>=0.25"]
build-backend = "hatchling.build"

[project]
name = "jupyter_server_synchronizer"
version = "0.0.9.dev0"
license = { file = "COPYING.md" }
description = "A Jupyter Server Session Manager that rehydrates and synchronizes Jupyter sessions (e.g. notebook-kernel connections)."
keywords = ["ipython", "jupyter"]
Expand All @@ -24,7 +25,6 @@ classifiers = [
]
requires-python = ">=3.7"
dependencies = ["jupyter_server>=1.16.0"]
dynamic = ["version"]

[[project.authors]]
name = "Jupyter Development Team"
Expand All @@ -51,9 +51,6 @@ test = [
"pytest>=6.0",
]

[tool.flit.sdist]
include = ["tests/"]

[tool.pytest.ini_options]
addopts = "-raXs --durations 10 --color=yes --doctest-modules"
testpaths = [
Expand Down Expand Up @@ -103,6 +100,9 @@ tag_template = "v{new_version}"
src = "jupyter_server_synchronizer/_version.py"
version_template = '({major}, {minor}, {patch}, "{channel}", "{release}")'

[[tool.tbump.file]]
src = "pyproject.toml"

[[tool.tbump.field]]
name = "channel"
default = ""
Expand Down

0 comments on commit 6787dd1

Please sign in to comment.