Skip to content

Commit

Permalink
dd
Browse files Browse the repository at this point in the history
  • Loading branch information
aslgraefe committed Sep 28, 2024
1 parent 0411aa9 commit 89bb28e
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "template_for_python_projects"
authors = [
Expand Down Expand Up @@ -29,8 +25,9 @@ classifiers = [
]
dependencies = [
"numpy",
"jsonschema", # Added jsonschema to dependencies
]
version = "0.1.0" # Explicit version added to avoid dynamic version lookup issues
version = "0.1.0"

[project.optional-dependencies]
test = ["pytest>=7.0.0,<8.0.0"]
Expand All @@ -46,7 +43,4 @@ bugtracker = "https://github.com/frehburg/template_for_python_projects/issues"
package-dir = { "" = "src" }

[tool.setuptools.packages.find]
where = ["src"] # Ensure that the packages in 'src' directory are discovered properly

[project.scripts]
sample = "sample:main" # If you have a CLI script, otherwise this section can be removed
where = ["src"]

0 comments on commit 89bb28e

Please sign in to comment.