-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a8239a0
commit bf5af60
Showing
1 changed file
with
7 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |