Skip to content

Commit

Permalink
.toml build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayakms221 committed Feb 8, 2024
1 parent a8239a0 commit bf5af60
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,18 @@ version = "0.0.0"
description = "A brief description of what your project does."
authors = [{ name = "Your Name", email = "[email protected]" }]
license = "MIT"
requires-python = ">=3.8"
dependencies = [
"flask ^1.1.2",
"requests ^2.25.1",
# Add other runtime dependencies here
]
requires-python = ">=3.8" # Specify the Python version requirement here

[project.dependencies]
flask = "^1.1.2"
requests = "^2.25.1"

[project.optional-dependencies]
dev = [
"pytest>=6.0,<7",
"black==20.8b1",
"flake8>=3.8,<4",
"flake8>=3.8,<4"
]

[tool.pdm]
# PDM specific configuration if needed
python_requires = ">=3.8"
python_requires = ">=3.8" # Ensure PDM is aware of the Python version requirement

0 comments on commit bf5af60

Please sign in to comment.