Skip to content

Commit

Permalink
Enh pypi: v0.0.2 (#43)
Browse files Browse the repository at this point in the history
* ADD: classifier in pyproject.toml

* ENH: enh pypi packaging
  • Loading branch information
VincentAuriau authored Nov 7, 2023
1 parent b22c137 commit 4d99b52
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pyalapin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"""
# from .interface import interface as interface

__version__ = "0.0.1"
__version__ = "0.0.2"
__author__ = "Vincent Auriau"
Empty file added pyalapin/player/__init__.py
Empty file.
17 changes: 11 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,19 @@ build-backend = "setuptools.build_meta"

[project]
name = "pyalapin"
version = "0.0.1"
version = "0.0.2"
authors = [
{ name = "Vincent Auriau", email = "[email protected]"},
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]

description = "Custom chess engine built specifically to develop AIs"
keywords = ["chess", "ai", "interface"]
Expand All @@ -23,8 +30,6 @@ dev = ["black", "bumpver", "isort", "pip-tools", "pytest", "kivy"]
[project.urls]
Homepage = "https://github.com/VincentAuriau/custom-chess-engine"

[tool.setuptools]
packages = [
"tests",
"pyalapin"
]
[tool.setuptools.packages.find]
include=["pyalapin*"]
namespaces=false

0 comments on commit 4d99b52

Please sign in to comment.