-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.42 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "high-score-duel"
version = "0.1.0"
description = "High Score Duel game with heuristic and trainable AI"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Thomas Faucherre", email = "thomas.fchrr03@gmail.com" }]
maintainers = [{ name = "Thomas Faucherre", email = "thomas.fchrr03@gmail.com" }]
license = { text = "Proprietary" }
keywords = ["game-ai", "neural-network", "python", "strategy", "simulation"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"numpy>=1.24",
"matplotlib>=3.8"
]
[project.urls]
Homepage = "https://github.com/thomasfchrr/High-Score-Duel-Python"
Repository = "https://github.com/thomasfchrr/High-Score-Duel-Python"
Documentation = "https://github.com/thomasfchrr/High-Score-Duel-Python/tree/main/docs"
[project.optional-dependencies]
legacy_h5 = ["h5py>=3.10"]
gui = ["PySide6>=6.6"]
[project.scripts]
high-score-duel = "high_score_duel.cli:main"
hsd-continual-learning = "high_score_duel.learning.continual_learning:main"
hsd-gui = "high_score_duel.gui:main"
[tool.setuptools]
packages = ["high_score_duel", "high_score_duel.ai", "high_score_duel.learning", "ia"]