Skip to content

Commit

Permalink
ADD: manifest + more elements in .toml
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentAuriau committed Nov 4, 2023
1 parent fde3cc6 commit c5093fe
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# MANIFEST.in

include illustrations/*.png
18 changes: 15 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@
requires = ["setuptools"]
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "pyalapin"
version = "0.0.1"
authors = [
{ name = "Vincent Auriau"},
{ name = "Vincent Auriau", email = ""},
]
description = "Custom Chess Engine"
license = { file = "LICENSE" }
readme = "README.md"

description = "Custom chess engine built specifically to develop AIs"
keywords = ["chess", "ai", "interface"]
dependencies = [
"numpy"
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest", "kivy"]

[project.urls]
Homepage = "https://github.com/VincentAuriau/custom-chess-engine"

[tool.setuptools]
packages = [
Expand Down

0 comments on commit c5093fe

Please sign in to comment.