-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ADD: classifier in pyproject.toml * ENH: enh pypi packaging
- Loading branch information
1 parent
b22c137
commit 4d99b52
Showing
3 changed files
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"] | ||
|
@@ -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 |