-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.52 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
[build-system]
requires = [
"flit_core >=3.2,<4",
"pytest-runner",
]
build-backend = "flit_core.buildapi"
[project]
name = "pelita"
description = "Pelita"
keywords = ["education"]
license = {text = "BSD-2"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
urls = {Homepage = "https://github.com/ASPP/pelita"}
requires-python = ">= 3.9"
dependencies = [
"pyzmq",
"PyYAML",
"numpy",
"networkx",
"pytest>=4",
"zeroconf",
"rich",
"click",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
pelita = "pelita.scripts.pelita_main:main"
pelita-tournament = "pelita.scripts.pelita_tournament:main"
pelita-tkviewer = "pelita.scripts.pelita_tkviewer:main"
pelita-player = "pelita.scripts.pelita_player:main"
pelita-server = "pelita.scripts.pelita_server:main"
pelita-createlayout = "pelita.scripts.pelita_createlayout:main"
[tool.aliases]
test = "pytest"
[tool.pytest.ini_options]
# addopts = --verbose
python_files = ["test/test_*.py", "contrib/test_*.py"]
[tool.coverage.run]
relative_files = true
omit = [
"pelita/scripts/*",
"pelita/ui/*",
"test/testplayers/*",
]