diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 4bad241..626ff25 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 1efcc44..9281641 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" @@ -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"}