-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.07 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"packaging>=21.3",
"pdoc3>=0.7.0",
"setuptools",
"twine",
"vermin",
]
[project]
name = "linqs-pacai"
version = "1.3.0"
description = "A modified version of the Pacman educational project from the Berkley AI Lab."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE.md"}
authors = [
{name = "Eriq Augustine", email = "[email protected]"},
{name = "LINQS", email = "[email protected]"},
]
keywords = ['AI', 'Artificial Intelligence', 'Education', 'Teaching']
classifiers = [
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
dependencies = [
"Pillow>=8.3.2",
]
[project.urls]
Homepage = "https://github.com/linqs/pacman"
Repository = "https://github.com/linqs/pacman"
[tool.setuptools.packages.find]
where = ["."]
include = ["pacai*"]
namespaces = false