|
1 | 1 | [project]
|
2 |
| -name = "python-perks" |
3 |
| -version = "1.0.0" |
4 |
| -description = "A repository for Python course notes, examples, and lab exercises targeted to students, professionals, and enthusiasts." |
5 |
| -authors = [ |
6 |
| - { name = "Sudip Ghimire", email = "[email protected]" } |
| 2 | +name="python-perks" |
| 3 | +version="1.0.0" |
| 4 | +description="A repository for Python course notes, examples, and lab exercises targeted to students, professionals, and enthusiasts." |
| 5 | +authors=[ |
| 6 | + { name="Sudip Ghimire", email="[email protected]" } , |
7 | 7 | ]
|
8 |
| -license = "MIT" |
9 |
| -readme = "README.md" |
10 |
| -requires-python = ">=3.10" |
| 8 | +license="MIT" |
| 9 | +readme="README.md" |
| 10 | +requires-python=">=3.10" |
11 | 11 |
|
12 |
| -dependencies = [ |
| 12 | +dependencies=[ |
13 | 13 | "requests>=2.32.3",
|
14 | 14 | ]
|
15 | 15 |
|
16 | 16 | [dependency-groups]
|
17 |
| -dev = [ |
| 17 | +dev=[ |
18 | 18 | "ipython>=8.31.0",
|
19 | 19 | "ruff>=0.8.4",
|
20 | 20 | ]
|
21 |
| -test = [ |
| 21 | +test=[ |
22 | 22 | "pytest>=8.3.4",
|
23 | 23 | ]
|
24 | 24 |
|
25 | 25 | [tool.ruff]
|
26 |
| -line-length = 88 |
27 |
| -indent-width = 4 |
28 |
| -target-version = "py312" |
| 26 | +line-length=88 |
| 27 | +indent-width=4 |
| 28 | +target-version="py312" |
29 | 29 | # Exclude a variety of commonly ignored directories.
|
30 |
| -exclude = [ |
| 30 | +exclude=[ |
31 | 31 | ".bzr",
|
32 | 32 | ".direnv",
|
33 | 33 | ".eggs",
|
@@ -57,27 +57,27 @@ exclude = [
|
57 | 57 | ]
|
58 | 58 |
|
59 | 59 | [tool.ruff.format]
|
60 |
| -quote-style = "double" |
61 |
| -indent-style = "space" |
62 |
| -skip-magic-trailing-comma = false |
| 60 | +quote-style="double" |
| 61 | +indent-style="space" |
| 62 | +skip-magic-trailing-comma=false |
63 | 63 |
|
64 | 64 | # poetry is now deprecated
|
65 | 65 | [tool.poetry]
|
66 |
| -name = "python-perks" |
67 |
| -version = "1.0.0" |
68 |
| -description = "A repository for Python course notes, examples, and lab exercises targeted to students, professionals, and enthusiasts." |
69 |
| -authors = ["Sudip Ghimire <[email protected]>"] |
70 |
| -license = "MIT" |
71 |
| -readme = "README.md" |
72 |
| -package-mode = false |
| 66 | +name="python-perks" |
| 67 | +version="1.0.0" |
| 68 | +description="A repository for Python course notes, examples, and lab exercises targeted to students, professionals, and enthusiasts." |
| 69 | +authors=[ "Sudip Ghimire <[email protected]>" ] |
| 70 | +license="MIT" |
| 71 | +readme="README.md" |
| 72 | +package-mode=false |
73 | 73 |
|
74 | 74 | [tool.poetry.dependencies]
|
75 |
| -python = ">=3.10" |
76 |
| -requests = "^2.32.3" |
| 75 | +python=">=3.10" |
| 76 | +requests="^2.32.3" |
77 | 77 |
|
78 | 78 |
|
79 | 79 | [tool.poetry.group.dev.dependencies]
|
80 |
| -ruff = "^0.8.1" |
| 80 | +ruff="^0.8.1" |
81 | 81 |
|
82 | 82 | # [build-system]
|
83 | 83 | # requires = ["poetry-core"]
|
|
0 commit comments