chessvision 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- chessvision-0.1.0/PKG-INFO +29 -0
- chessvision-0.1.0/README.md +1 -0
- chessvision-0.1.0/pyproject.toml +60 -0
- chessvision-0.1.0/pyproject.toml.orig +54 -0
- chessvision-0.1.0/src/chessvision/__init__.py +1 -0
- chessvision-0.1.0/src/chessvision/__main__.py +4 -0
- chessvision-0.1.0/src/chessvision/cli.py +28 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: chessvision
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Chess board recognition toolkit
|
|
5
|
+
Keywords: chess,chessvision,computer-vision,machine-learning
|
|
6
|
+
Author: Harshit Pawar
|
|
7
|
+
Author-email: Harshit Pawar <hpchess64@gmail.com>
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Environment :: Console
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
17
|
+
Classifier: Topic :: Games/Entertainment :: Board Games
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Image Recognition
|
|
20
|
+
Classifier: Topic :: Utilities
|
|
21
|
+
Requires-Dist: typer>=0.27.1
|
|
22
|
+
Requires-Python: >=3.12
|
|
23
|
+
Project-URL: Homepage, https://github.com/harshitpawar64/chessvision
|
|
24
|
+
Project-URL: Repository, https://github.com/harshitpawar64/chessvision
|
|
25
|
+
Project-URL: Issues, https://github.com/harshitpawar64/chessvision/issues
|
|
26
|
+
Project-URL: Changelog, https://github.com/harshitpawar64/chessvision/blob/main/CHANGELOG.md
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
|
|
29
|
+
# chessvision
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# chessvision
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "chessvision"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Chess board recognition toolkit"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
|
+
dependencies = ["typer>=0.27.1"]
|
|
8
|
+
keywords = [
|
|
9
|
+
"chess",
|
|
10
|
+
"chessvision",
|
|
11
|
+
"computer-vision",
|
|
12
|
+
"machine-learning",
|
|
13
|
+
]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 3 - Alpha",
|
|
16
|
+
"Environment :: Console",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Intended Audience :: End Users/Desktop",
|
|
19
|
+
"Operating System :: OS Independent",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
"Programming Language :: Python :: 3.13",
|
|
23
|
+
"Programming Language :: Python :: 3.14",
|
|
24
|
+
"Topic :: Games/Entertainment :: Board Games",
|
|
25
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
26
|
+
"Topic :: Scientific/Engineering :: Image Recognition",
|
|
27
|
+
"Topic :: Utilities",
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
[[project.authors]]
|
|
31
|
+
name = "Harshit Pawar"
|
|
32
|
+
email = "hpchess64@gmail.com"
|
|
33
|
+
|
|
34
|
+
[project.urls]
|
|
35
|
+
Homepage = "https://github.com/harshitpawar64/chessvision"
|
|
36
|
+
Repository = "https://github.com/harshitpawar64/chessvision"
|
|
37
|
+
Issues = "https://github.com/harshitpawar64/chessvision/issues"
|
|
38
|
+
Changelog = "https://github.com/harshitpawar64/chessvision/blob/main/CHANGELOG.md"
|
|
39
|
+
|
|
40
|
+
[project.scripts]
|
|
41
|
+
chessvision = "chessvision.cli:app"
|
|
42
|
+
|
|
43
|
+
[build-system]
|
|
44
|
+
requires = ["uv_build>=0.12.3,<0.13.0"]
|
|
45
|
+
build-backend = "uv_build"
|
|
46
|
+
|
|
47
|
+
[dependency-groups]
|
|
48
|
+
dev = [
|
|
49
|
+
"ruff>=0.16.4",
|
|
50
|
+
"ty>=0.0.73",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[tool.ruff.format]
|
|
54
|
+
skip-magic-trailing-comma = true
|
|
55
|
+
|
|
56
|
+
[tool.ruff.lint]
|
|
57
|
+
extend-select = ["I"]
|
|
58
|
+
|
|
59
|
+
[tool.ruff.lint.isort]
|
|
60
|
+
split-on-trailing-comma = false
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "chessvision"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Chess board recognition toolkit"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [{ name = "Harshit Pawar", email = "hpchess64@gmail.com" }]
|
|
7
|
+
requires-python = ">=3.12"
|
|
8
|
+
dependencies = [
|
|
9
|
+
"typer>=0.27.1",
|
|
10
|
+
]
|
|
11
|
+
keywords = ["chess", "chessvision", "computer-vision", "machine-learning"]
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 3 - Alpha",
|
|
14
|
+
"Environment :: Console",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Intended Audience :: End Users/Desktop",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Programming Language :: Python :: 3.13",
|
|
21
|
+
"Programming Language :: Python :: 3.14",
|
|
22
|
+
"Topic :: Games/Entertainment :: Board Games",
|
|
23
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
24
|
+
"Topic :: Scientific/Engineering :: Image Recognition",
|
|
25
|
+
"Topic :: Utilities",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[project.urls]
|
|
29
|
+
Homepage = "https://github.com/harshitpawar64/chessvision"
|
|
30
|
+
Repository = "https://github.com/harshitpawar64/chessvision"
|
|
31
|
+
Issues = "https://github.com/harshitpawar64/chessvision/issues"
|
|
32
|
+
Changelog = "https://github.com/harshitpawar64/chessvision/blob/main/CHANGELOG.md"
|
|
33
|
+
|
|
34
|
+
[project.scripts]
|
|
35
|
+
chessvision = "chessvision.cli:app"
|
|
36
|
+
|
|
37
|
+
[build-system]
|
|
38
|
+
requires = ["uv_build>=0.12.3,<0.13.0"]
|
|
39
|
+
build-backend = "uv_build"
|
|
40
|
+
|
|
41
|
+
[dependency-groups]
|
|
42
|
+
dev = [
|
|
43
|
+
"ruff>=0.16.4",
|
|
44
|
+
"ty>=0.0.73",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[tool.ruff.format]
|
|
48
|
+
skip-magic-trailing-comma = true
|
|
49
|
+
|
|
50
|
+
[tool.ruff.lint]
|
|
51
|
+
extend-select = ["I"]
|
|
52
|
+
|
|
53
|
+
[tool.ruff.lint.isort]
|
|
54
|
+
split-on-trailing-comma = false
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.0" # x-release-please-version
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from typing import Annotated
|
|
2
|
+
|
|
3
|
+
import typer
|
|
4
|
+
|
|
5
|
+
from chessvision import __version__
|
|
6
|
+
|
|
7
|
+
app = typer.Typer()
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def version_callback(value: bool):
|
|
11
|
+
if value:
|
|
12
|
+
print(f"chessvision {__version__}")
|
|
13
|
+
raise typer.Exit()
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
@app.callback(invoke_without_command=True)
|
|
17
|
+
def main(
|
|
18
|
+
version: Annotated[
|
|
19
|
+
bool,
|
|
20
|
+
typer.Option(
|
|
21
|
+
"--version",
|
|
22
|
+
"-V",
|
|
23
|
+
callback=version_callback,
|
|
24
|
+
is_eager=True,
|
|
25
|
+
help="Show version and exit.",
|
|
26
|
+
),
|
|
27
|
+
] = False,
|
|
28
|
+
): ...
|