-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.42 KB
/
pyproject.toml
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
[project]
name = "comp1010"
version = "25.1.5"
description = "The COMP1010 metapackage, used to specify dependencies required for UNSW's COMP1010 course."
authors = [
{ name = "COMP1010 UNSW", email = "[email protected]" },
{ name = "Maddy Guthridge", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"flask (>=3.1.0,<4.0.0)",
"pyhtml-enhanced (>=2.2.0,<3.0.0)",
"pytest (>=8.3.4,<9.0.0)",
"jestspectation (>=1.4.3,<2.0.0)",
"ipykernel (>=6.29.5,<7.0.0)",
"requests (>=2.32.3,<3.0.0)",
"types-requests (>=2.32.0.20241016,<3.0.0.0)",
"pillow (>=11.1.0,<12.0.0)",
"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)",
]
license = { file = "LICENSE.md" }
[project.scripts]
comp1010 = "comp1010.__main__:main"
[tool.poetry]
packages = [{ include = "comp1010" }]
[tool.poetry.group.dev.dependencies]
ruff = "^0.9.2"
[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",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"