diff --git a/pyalapin/__init__.py b/pyalapin/__init__.py index 7f38ff0..f81330f 100644 --- a/pyalapin/__init__.py +++ b/pyalapin/__init__.py @@ -3,5 +3,5 @@ """ # from .interface import interface as interface -__version__ = "0.0.1" +__version__ = "0.0.2" __author__ = "Vincent Auriau" diff --git a/pyalapin/player/__init__.py b/pyalapin/player/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml index 36232b3..3c08a8a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "vincent.auriau.dev@gmail.com"}, ] 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"] @@ -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