sachin-chess-utils 0.1.1__tar.gz → 0.1.2__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.
- sachin_chess_utils-0.1.2/PKG-INFO +27 -0
- sachin_chess_utils-0.1.2/README.md +15 -0
- sachin_chess_utils-0.1.2/sachin_chess_utils.egg-info/PKG-INFO +27 -0
- {sachin_chess_utils-0.1.1 → sachin_chess_utils-0.1.2}/setup.py +7 -2
- sachin_chess_utils-0.1.1/PKG-INFO +0 -11
- sachin_chess_utils-0.1.1/README.md +0 -13
- sachin_chess_utils-0.1.1/sachin_chess_utils.egg-info/PKG-INFO +0 -11
- {sachin_chess_utils-0.1.1 → sachin_chess_utils-0.1.2}/sachin_chess_utils/__init__.py +0 -0
- {sachin_chess_utils-0.1.1 → sachin_chess_utils-0.1.2}/sachin_chess_utils/main.py +0 -0
- {sachin_chess_utils-0.1.1 → sachin_chess_utils-0.1.2}/sachin_chess_utils.egg-info/SOURCES.txt +0 -0
- {sachin_chess_utils-0.1.1 → sachin_chess_utils-0.1.2}/sachin_chess_utils.egg-info/dependency_links.txt +0 -0
- {sachin_chess_utils-0.1.1 → sachin_chess_utils-0.1.2}/sachin_chess_utils.egg-info/entry_points.txt +0 -0
- {sachin_chess_utils-0.1.1 → sachin_chess_utils-0.1.2}/sachin_chess_utils.egg-info/requires.txt +0 -0
- {sachin_chess_utils-0.1.1 → sachin_chess_utils-0.1.2}/sachin_chess_utils.egg-info/top_level.txt +0 -0
- {sachin_chess_utils-0.1.1 → sachin_chess_utils-0.1.2}/setup.cfg +0 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: sachin_chess_utils
|
3
|
+
Version: 0.1.2
|
4
|
+
Summary: UNKNOWN
|
5
|
+
Home-page: UNKNOWN
|
6
|
+
Author: Sachin Chauhan Infocusp
|
7
|
+
License: UNKNOWN
|
8
|
+
Platform: UNKNOWN
|
9
|
+
Description-Content-Type: text/markdown
|
10
|
+
|
11
|
+
# sachin-chess-utils
|
12
|
+
|
13
|
+
General propose Chess related utility functions.
|
14
|
+
|
15
|
+
# Build
|
16
|
+
|
17
|
+
python3 setup.py sdist bdist_wheel
|
18
|
+
|
19
|
+
# Local Test
|
20
|
+
|
21
|
+
pip install dist/sachin_chess_utils-0.1.1-py3-none-any.whlhttps://www.youtube.com/watch?v=Kz6IlDCyOUY&t=377s&ab_channel=pixegami
|
22
|
+
|
23
|
+
# Publish
|
24
|
+
|
25
|
+
twine upload dist/\*
|
26
|
+
|
27
|
+
|
@@ -0,0 +1,15 @@
|
|
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.whlhttps://www.youtube.com/watch?v=Kz6IlDCyOUY&t=377s&ab_channel=pixegami
|
12
|
+
|
13
|
+
# Publish
|
14
|
+
|
15
|
+
twine upload dist/\*
|
@@ -0,0 +1,27 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: sachin-chess-utils
|
3
|
+
Version: 0.1.2
|
4
|
+
Summary: UNKNOWN
|
5
|
+
Home-page: UNKNOWN
|
6
|
+
Author: Sachin Chauhan Infocusp
|
7
|
+
License: UNKNOWN
|
8
|
+
Platform: UNKNOWN
|
9
|
+
Description-Content-Type: text/markdown
|
10
|
+
|
11
|
+
# sachin-chess-utils
|
12
|
+
|
13
|
+
General propose Chess related utility functions.
|
14
|
+
|
15
|
+
# Build
|
16
|
+
|
17
|
+
python3 setup.py sdist bdist_wheel
|
18
|
+
|
19
|
+
# Local Test
|
20
|
+
|
21
|
+
pip install dist/sachin_chess_utils-0.1.1-py3-none-any.whlhttps://www.youtube.com/watch?v=Kz6IlDCyOUY&t=377s&ab_channel=pixegami
|
22
|
+
|
23
|
+
# Publish
|
24
|
+
|
25
|
+
twine upload dist/\*
|
26
|
+
|
27
|
+
|
@@ -1,8 +1,11 @@
|
|
1
1
|
from setuptools import setup, find_packages
|
2
2
|
|
3
|
+
with open("README.md", "r") as f:
|
4
|
+
description = f.read()
|
5
|
+
|
3
6
|
setup(
|
4
7
|
name="sachin_chess_utils",
|
5
|
-
version="0.1.
|
8
|
+
version="0.1.2",
|
6
9
|
author="Sachin Chauhan Infocusp",
|
7
10
|
packages=find_packages(),
|
8
11
|
install_requires=[
|
@@ -12,5 +15,7 @@ setup(
|
|
12
15
|
'console_scripts': [
|
13
16
|
'sachin_hello = sachin_chess_utils:hello'
|
14
17
|
]
|
15
|
-
}
|
18
|
+
},
|
19
|
+
long_description=description,
|
20
|
+
long_description_content_type="text/markdown",
|
16
21
|
)
|
@@ -1,13 +0,0 @@
|
|
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
|
File without changes
|
File without changes
|
{sachin_chess_utils-0.1.1 → sachin_chess_utils-0.1.2}/sachin_chess_utils.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{sachin_chess_utils-0.1.1 → sachin_chess_utils-0.1.2}/sachin_chess_utils.egg-info/entry_points.txt
RENAMED
File without changes
|
{sachin_chess_utils-0.1.1 → sachin_chess_utils-0.1.2}/sachin_chess_utils.egg-info/requires.txt
RENAMED
File without changes
|
{sachin_chess_utils-0.1.1 → sachin_chess_utils-0.1.2}/sachin_chess_utils.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|