-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from sgrvinod/0.3.1
0.3.1
- Loading branch information
Showing
10 changed files
with
104 additions
and
74 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
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
[build-system] | ||
requires = ["setuptools >= 64"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "chess-transformers" | ||
version = "0.3.1" | ||
description = "Teaching transformers to play chess." | ||
authors = [{ name = "Sagar Vinodababu", email = "[email protected]" }] | ||
maintainers = [{ name = "Sagar Vinodababu", email = "[email protected]" }] | ||
readme = "README.md" | ||
requires-python = ">=3.6.0" | ||
dependencies = [ | ||
"beautifulsoup4==4.12.3", | ||
"chess==1.10.0", | ||
"colorama==0.4.5", | ||
"ipython==8.17.2", | ||
"Markdown==3.3.4", | ||
"py_cpuinfo==9.0.0", | ||
"regex==2024.7.24", | ||
"scipy==1.13.1", | ||
"setuptools==69.0.3", | ||
"tables==3.9.2", | ||
"tabulate==0.9.0", | ||
"torch==2.4.0", | ||
"tqdm==4.64.1", | ||
"tensorboard==2.18.0", | ||
] | ||
license = { text = "MIT License" } | ||
keywords = ["transformer", "chess", "pytorch", "deep learning", "chess engine"] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
] | ||
|
||
[project.urls] | ||
homepage = "https://github.com/sgrvinod/chess-transformers" | ||
source = "https://github.com/sgrvinod/chess-transformers" | ||
changelog = "https://github.com/sgrvinod/chess-transformers/blob/main/CHANGELOG.md" | ||
releasenotes = "https://github.com/sgrvinod/chess-transformers/releases" | ||
issues = "https://github.com/sgrvinod/chess-transformers/issues" |
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 |
---|---|---|
@@ -1,43 +1,3 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open("README.md", mode="r", encoding="utf-8") as readme_file: | ||
readme = readme_file.read() | ||
|
||
|
||
setup( | ||
name="chess-transformers", | ||
version="0.3.0", | ||
author="Sagar Vinodababu", | ||
author_email="[email protected]", | ||
description="Chess Transformers", | ||
long_description=readme, | ||
long_description_content_type="text/markdown", | ||
license="MIT License", | ||
url="https://github.com/sgrvinod/chess-transformers", | ||
download_url="https://github.com/sgrvinod/chess-transformers", | ||
packages=find_packages(), | ||
python_requires=">=3.6.0", | ||
install_requires=[ | ||
"beautifulsoup4==4.12.3", | ||
"chess==1.10.0", | ||
"colorama==0.4.5", | ||
"ipython==8.17.2", | ||
"Markdown==3.3.4", | ||
"py_cpuinfo==9.0.0", | ||
"regex==2024.7.24", | ||
"scipy==1.13.1", | ||
"setuptools==69.0.3", | ||
"tables==3.9.2", | ||
"tabulate==0.9.0", | ||
"torch==2.4.0", | ||
"tqdm==4.64.1", | ||
], | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.9", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
], | ||
keywords="transformer networks chess pytorch deep learning", | ||
) | ||
setup(packages=find_packages()) |