@@ -6,7 +6,7 @@ requires = [
66build-backend =" hatchling.build"
77
88[project ]
9- name = " js -template"
9+ name = " python -template-js "
1010authors = [{name = " Python Project Template Authors" , email = " 3105306+timkpaine@users.noreply.github.com" }]
1111description =" A JavaScript-Python project template"
1212readme = " README.md"
@@ -30,8 +30,8 @@ classifiers = [
3030dependencies = []
3131
3232[project .urls ]
33- Repository = " https://github.com/python-project-templates/js -template"
34- Homepage = " https://github.com/python-project-templates/js -template"
33+ Repository = " https://github.com/python-project-templates/python -template-js "
34+ Homepage = " https://github.com/python-project-templates/python -template-js "
3535
3636[project .optional-dependencies ]
3737develop = [
@@ -55,7 +55,7 @@ commit = true
5555tag = true
5656
5757[[tool .bumpversion .files ]]
58- filename = " js_template /__init__.py"
58+ filename = " python_template_js /__init__.py"
5959search = ' __version__ = "{current_version}"'
6060replace = ' __version__ = "{new_version}"'
6161
@@ -75,13 +75,13 @@ ignore = [
7575 " js/pnpm-lock.yaml" ,
7676 " Makefile" ,
7777 " setup.py" ,
78- " js_template /**/*" ,
78+ " python_template_js /**/*" ,
7979]
8080
8181[tool .coverage .run ]
8282branch = true
8383omit = [
84- " js_template /tests/integration/" ,
84+ " python_template_js /tests/integration/" ,
8585]
8686[tool .coverage .report ]
8787exclude_also = [
@@ -94,15 +94,15 @@ fail_under = 50
9494
9595[tool .hatch .build ]
9696artifacts = [
97- " js_template /extension" ,
97+ " python_template_js /extension" ,
9898]
9999
100100[tool .hatch .build .sources ]
101101src = " /"
102102
103103[tool .hatch .build .targets .sdist ]
104104include = [
105- " /js_template " ,
105+ " /python_template_js " ,
106106 " /js" ,
107107 " LICENSE" ,
108108 " README.md" ,
@@ -117,7 +117,7 @@ exclude = [
117117
118118[tool .hatch .build .targets .wheel ]
119119include = [
120- " /js_template " ,
120+ " /python_template_js " ,
121121]
122122exclude = [
123123 " .copier-answers.yml" ,
@@ -131,10 +131,10 @@ exclude = [
131131[tool .hatch .build .hooks .jupyter-builder ]
132132build-function = " hatch_jupyter_builder.npm_builder"
133133ensured-targets = [
134- " js_template /extension/cdn/index.js" ,
134+ " python_template_js /extension/cdn/index.js" ,
135135]
136136skip-if-exists = [
137- " js_template /extension/cdn/index.js" ,
137+ " python_template_js /extension/cdn/index.js" ,
138138]
139139dependencies = [
140140 " hatch-jupyter-builder" ,
@@ -148,7 +148,7 @@ npm = "pnpm"
148148[tool .pytest .ini_options ]
149149addopts = [" -vvv" , " --junitxml=junit.xml" ]
150150asyncio_mode = " strict"
151- testpaths = " js_template /tests"
151+ testpaths = " python_template_js /tests"
152152
153153[tool .ruff ]
154154line-length = 150
@@ -159,7 +159,7 @@ extend-select = ["I"]
159159[tool .ruff .lint .isort ]
160160combine-as-imports = true
161161default-section = " third-party"
162- known-first-party = [" js_template " ]
162+ known-first-party = [" python_template_js " ]
163163section-order = [" future" , " standard-library" , " third-party" , " first-party" , " local-folder" ]
164164
165165[tool .ruff .lint .per-file-ignores ]
0 commit comments