@@ -7,7 +7,7 @@ requires = [
77build-backend =" hatchling.build"
88
99[project ]
10- name = " jupyter -template"
10+ name = " python -template-jupyter "
1111authors = [{name = " Python Project Template Authors" , email = " 3105306+timkpaine@users.noreply.github.com" }]
1212description =" A Jupyter-Python project template"
1313readme = " README.md"
@@ -31,8 +31,8 @@ classifiers = [
3131dependencies = []
3232
3333[project .urls ]
34- Repository = " https://github.com/python-project-templates/jupyter -template"
35- Homepage = " https://github.com/python-project-templates/jupyter -template"
34+ Repository = " https://github.com/python-project-templates/python -template-jupyter "
35+ Homepage = " https://github.com/python-project-templates/python -template-jupyter "
3636
3737[project .optional-dependencies ]
3838develop = [
@@ -57,7 +57,7 @@ commit = true
5757tag = true
5858
5959[[tool .bumpversion .files ]]
60- filename = " jupyter_template /__init__.py"
60+ filename = " python_template_jupyter /__init__.py"
6161search = ' __version__ = "{current_version}"'
6262replace = ' __version__ = "{new_version}"'
6363
@@ -77,14 +77,14 @@ ignore = [
7777 " js/pnpm-lock.yaml" ,
7878 " Makefile" ,
7979 " setup.py" ,
80- " jupyter_template /labextension/**" ,
81- " jupyter_template /nbextension/**" ,
80+ " python_template_jupyter /labextension/**" ,
81+ " python_template_jupyter /nbextension/**" ,
8282]
8383
8484[tool .coverage .run ]
8585branch = true
8686omit = [
87- " jupyter_template /tests/integration/" ,
87+ " python_template_jupyter /tests/integration/" ,
8888]
8989[tool .coverage .report ]
9090exclude_also = [
@@ -97,16 +97,16 @@ fail_under = 50
9797
9898[tool .hatch .build ]
9999artifacts = [
100- " jupyter_template /nbextension" ,
101- " jupyter_template /labextension" ,
100+ " python_template_jupyter /nbextension" ,
101+ " python_template_jupyter /labextension" ,
102102]
103103
104104[tool .hatch .build .sources ]
105105src = " /"
106106
107107[tool .hatch .build .targets .sdist ]
108108include = [
109- " /jupyter_template " ,
109+ " /python_template_jupyter " ,
110110 " /js" ,
111111 " LICENSE" ,
112112 " README.md" ,
@@ -121,7 +121,7 @@ exclude = [
121121
122122[tool .hatch .build .targets .wheel ]
123123include = [
124- " /jupyter_template " ,
124+ " /python_template_jupyter " ,
125125]
126126exclude = [
127127 " .copier-answers.yml" ,
@@ -133,15 +133,15 @@ exclude = [
133133]
134134
135135[tool .hatch .build .targets .wheel .shared-data ]
136- "jupyter_template /labextension" = " share/jupyter/labextensions/jupyter_template "
136+ "python_template_jupyter /labextension" = " share/jupyter/labextensions/python_template_jupyter "
137137
138138[tool .hatch .build .hooks .jupyter-builder ]
139139build-function = " hatch_jupyter_builder.npm_builder"
140140ensured-targets = [
141- " jupyter_template /labextension/package.json" ,
141+ " python_template_jupyter /labextension/package.json" ,
142142]
143143skip-if-exists = [
144- " jupyter_template /labextension/package.json" ,
144+ " python_template_jupyter /labextension/package.json" ,
145145]
146146dependencies = [
147147 " hatch-jupyter-builder" ,
@@ -155,7 +155,7 @@ npm = "pnpm"
155155[tool .pytest .ini_options ]
156156addopts = [" -vvv" , " --junitxml=junit.xml" ]
157157asyncio_mode = " strict"
158- testpaths = " jupyter_template /tests"
158+ testpaths = " python_template_jupyter /tests"
159159
160160[tool .ruff ]
161161line-length = 150
@@ -166,7 +166,7 @@ extend-select = ["I"]
166166[tool .ruff .lint .isort ]
167167combine-as-imports = true
168168default-section = " third-party"
169- known-first-party = [" jupyter_template " ]
169+ known-first-party = [" python_template_jupyter " ]
170170section-order = [" future" , " standard-library" , " third-party" , " first-party" , " local-folder" ]
171171
172172[tool .ruff .lint .per-file-ignores ]
0 commit comments