sachin-chess-utils 0.1.1__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.
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.1
2
+ Name: sachin_chess_utils
3
+ Version: 0.1.1
4
+ Summary: UNKNOWN
5
+ Home-page: UNKNOWN
6
+ Author: Sachin Chauhan Infocusp
7
+ License: UNKNOWN
8
+ Platform: UNKNOWN
9
+
10
+ UNKNOWN
11
+
@@ -0,0 +1,13 @@
1
+ # sachin-chess-utils
2
+
3
+ General propose Chess related utility functions.
4
+
5
+ # Build
6
+
7
+ python3 setup.py sdist bdist_wheel
8
+
9
+ # Local Test
10
+
11
+ pip install dist/sachin_chess_utils-0.1.1-py3-none-any.whl
12
+
13
+ https://www.youtube.com/watch?v=Kz6IlDCyOUY&t=377s&ab_channel=pixegami
@@ -0,0 +1 @@
1
+ from .main import hello
@@ -0,0 +1,4 @@
1
+
2
+ def hello():
3
+ """Test function to greet the user."""
4
+ return "Hello from sachin_chess_utils!"
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.1
2
+ Name: sachin-chess-utils
3
+ Version: 0.1.1
4
+ Summary: UNKNOWN
5
+ Home-page: UNKNOWN
6
+ Author: Sachin Chauhan Infocusp
7
+ License: UNKNOWN
8
+ Platform: UNKNOWN
9
+
10
+ UNKNOWN
11
+
@@ -0,0 +1,10 @@
1
+ README.md
2
+ setup.py
3
+ sachin_chess_utils/__init__.py
4
+ sachin_chess_utils/main.py
5
+ sachin_chess_utils.egg-info/PKG-INFO
6
+ sachin_chess_utils.egg-info/SOURCES.txt
7
+ sachin_chess_utils.egg-info/dependency_links.txt
8
+ sachin_chess_utils.egg-info/entry_points.txt
9
+ sachin_chess_utils.egg-info/requires.txt
10
+ sachin_chess_utils.egg-info/top_level.txt
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ sachin_hello = sachin_chess_utils:hello
3
+
@@ -0,0 +1 @@
1
+ sachin_chess_utils
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,16 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="sachin_chess_utils",
5
+ version="0.1.1",
6
+ author="Sachin Chauhan Infocusp",
7
+ packages=find_packages(),
8
+ install_requires=[
9
+ 'numpy>=1.11.0'
10
+ ],
11
+ entry_points={
12
+ 'console_scripts': [
13
+ 'sachin_hello = sachin_chess_utils:hello'
14
+ ]
15
+ }
16
+ )