This repository was archived by the owner on Jun 17, 2025. 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
56 lines (47 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
56 lines (47 loc) · 1.61 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
[build-system]
requires = [ "setuptools", "wheel" ]
build-backend = "setuptools.build_meta"
[project]
name = "IA"
description = "UMinho's 2024/25 Artificial Intelligence class assignment"
version = "0.0.1"
authors = [
{ name = "Ana Carolina", email = "a104188@alunos.uminho.pt" },
{ name = "Humberto Gomes", email = "a104348@alunos.uminho.pt" },
{ name = "João Torres", email = "a95748@alunos.uminho.pt" },
{ name = "José Lopes", email = "a104541@alunos.uminho.pt" },
{ name = "José Matos", email = "a100612@alunos.uminho.pt" },
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
keywords = [ "ai", "graph", "algorithms" ]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Education",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Langunage :: Python",
"Programming Langunage :: Python :: 3",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"bs4",
"lxml",
"perlin-noise",
"pygame",
"requests",
"types-beautifulsoup4",
"types-requests"
]
[project.urls]
Homepage = "https://github.com/voidbert/IA"
Repository = "https://github.com/voidbert/IA"
"Bug Tracker" = "https://github.com/voidbert/IA/issues"
[tool.setuptools]
py-modules = []
[tool.mypy]
disallow_untyped_defs = true
ignore_missing_imports = true