This repository was archived by the owner on Feb 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.37 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "comp1010"
version = "25.1.7"
description = "The COMP1010 metapackage, used to specify dependencies required for UNSW's COMP1010 course."
authors = [
{ name = "COMP1010 UNSW", email = "cs1010@cse.unsw.edu.au" },
{ name = "Maddy Guthridge", email = "hello@maddyguthridge.com" },
]
license = { file = "LICENSE.md" }
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"flask (>=3.1.0,<4.0.0)",
"pyhtml-enhanced (>=2.2.0,<3.0.0)",
"pytest>=9,<10",
"jestspectation (>=1.4.3,<2.0.0)",
"ipykernel>=7,<8",
"requests (>=2.32.3,<3.0.0)",
"types-requests (>=2.32.0.20241016,<3.0.0.0)",
"pillow>=12,<13",
"pandas (>=2.2.3,<3.0.0)",
"colorama (>=0.4.6,<0.5.0)",
"types-colorama (>=0.4.15.20240311,<0.5.0.0)",
"numpy (>=2.2.2,<3.0.0)",
"subtask (>=1.1.2,<2.0.0)",
"mypy (>=1.15.0,<2.0.0)",
]
[project.scripts]
comp1010 = "comp1010.__main__:main"
[dependency-groups]
dev = ["ruff>=0.9.2"]
[build-system]
requires = ["uv_build>=0.7.20,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "comp1010"
module-root = ""
[tool.mypy]
check_untyped_defs = true
files = ["comp1010"]
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]