Skip to content
Merged

Dev #22

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ body:
id: system
attributes:
label: System information
description: Please provide informations about you python version and os. The command `python -c "import sys; print(sys.version, sys.platform)"` can be used to get this information. Provide also the output of `pip list` command.
description: Please provide informations about your python version and os by running the command `uv run python -c "import sys; print(sys.version, sys.platform)"; uv pip list` in your terminal.
render: shell
validations:
required: true
Expand Down
18 changes: 4 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,10 @@ docs = [

[build-system]
requires = [
"setuptools",
"wheel",
"pythonbasictools",
"numpy",
"psutil",
"setuptools>=57.0.0",
"wheel>=0.45.1,<0.46",
"build>=1.2.2.post1,<2",
"twine>=6.1.0,<7",
]
build-backend = "setuptools.build_meta"

Expand All @@ -71,15 +70,6 @@ default-groups = [
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}

[tool.hatch.build.targets.sdist]
include = ["src/python_template"]

[tool.hatch.build.targets.wheel]
include = ["src/python_template"]

[tool.hatch.build.targets.wheel.sources]
"src/python_template" = "python_template"

[tool.setuptools]
package-dir = {"" = "src"}

Expand Down