-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.05 KB
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
33
34
35
36
37
38
39
40
41
[project]
name = "python-workshop"
version = "0.1.0"
authors = [
{ name = "Amirhossein Heydari", email = "amirhosseinheydari78@gmail.com" },
]
maintainers = [
{ name = "Amirhossein Heydari", email = "amirhosseinheydari78@gmail.com" },
]
description = "Comprehensive Python Workshop: Mastering Fundamentals and Advanced Techniques"
keywords = ["Python", "programming", "software development", "tutorials"]
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE", "assets/images/original/LICENSE"]
requires-python = ">=3.14.0"
dependencies = [
"ipykernel>=7.0.1,<8.0.0",
]
[project.optional-dependencies]
complete = [
"matplotlib>=3.10.7,<4.0.0",
"numpy>=2.3.4,<3.0.0",
"pandas>=2.3.3,<3.0.0",
"torch==2.9.0",
]
[tool.uv.sources]
torch = [{ index = "pytorch-cpu", extra = "complete" }]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[project.urls]
Repository = "https://github.com/mr-pylin/python-workshop"
MyHomepage = "https://mr-pylin.github.io"
[tool.black]
line-length = 120