Skip to content

Commit 89d4937

Browse files
Add files via upload
1 parent 2b2754b commit 89d4937

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
chess>=1.3.2
2+
numpy>=1.19.4
3+
plotly>=4.14.1

setup.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import setuptools
2+
3+
with open("README.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="chessAnalyzer", # Replace with your own username
8+
version="0.0.1",
9+
author="Aryan Anand",
10+
author_email="aryananand.chess@gmail.com",
11+
description="Analyses games and positions. Possible to have a Game Report similar to the one from chess.com, "
12+
"including graphs.",
13+
long_description=long_description,
14+
long_description_content_type="text/markdown",
15+
url="https://github.com/CoderAryanAnand/pythonChessAnalyzer",
16+
packages=setuptools.find_packages(),
17+
classifiers=[
18+
"Programming Language :: Python :: 3",
19+
"License :: OSI Approved :: MIT License",
20+
"Operating System :: OS Independent",
21+
],
22+
python_requires='>=3.6',
23+
)

0 commit comments

Comments
 (0)