-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 802 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[project]
name = "Python-Beginner"
version = "2025.1.0"
dependencies = [
]
requires-python = ">=3.11"
authors = [
{name = "Jay Gaha", email = "jaygaha@gmail.com"},
]
description = "Python beginner tutorials!"
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["weather app", "python", "weather", "beginners", "first-app"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.optional-dependencies]
gui = ["PyQt5"]
cli = [
]
[project.urls]
Homepage = "https://github.com/jaygaha/python-beginner"
Documentation = "https://github.com/jaygaha/python-beginner/README.md"
Repository = "git@github.com:jaygaha/python-beginner.git"
"Bug Tracker" = "https://github.com/jaygaha/python-beginner/issues"
[tool.pyright]
venvPath = "."
venv = ".venv"