Skip to content

Commit 03e528b

Browse files
committed
refactor
1 parent 04565c0 commit 03e528b

File tree

2 files changed

+28
-28
lines changed

2 files changed

+28
-28
lines changed

pyproject.toml

+28-28
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
[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]" },
77
]
8-
license = "MIT"
9-
readme = "README.md"
10-
requires-python = ">=3.10"
8+
license="MIT"
9+
readme="README.md"
10+
requires-python=">=3.10"
1111

12-
dependencies = [
12+
dependencies=[
1313
"requests>=2.32.3",
1414
]
1515

1616
[dependency-groups]
17-
dev = [
17+
dev=[
1818
"ipython>=8.31.0",
1919
"ruff>=0.8.4",
2020
]
21-
test = [
21+
test=[
2222
"pytest>=8.3.4",
2323
]
2424

2525
[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"
2929
# Exclude a variety of commonly ignored directories.
30-
exclude = [
30+
exclude=[
3131
".bzr",
3232
".direnv",
3333
".eggs",
@@ -57,27 +57,27 @@ exclude = [
5757
]
5858

5959
[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
6363

6464
# poetry is now deprecated
6565
[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
7373

7474
[tool.poetry.dependencies]
75-
python = ">=3.10"
76-
requests = "^2.32.3"
75+
python=">=3.10"
76+
requests="^2.32.3"
7777

7878

7979
[tool.poetry.group.dev.dependencies]
80-
ruff = "^0.8.1"
80+
ruff="^0.8.1"
8181

8282
# [build-system]
8383
# requires = ["poetry-core"]

0 commit comments

Comments
 (0)