Openix 1.0.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.
- openix-1.0.0/Openix.egg-info/PKG-INFO +19 -0
- openix-1.0.0/Openix.egg-info/SOURCES.txt +6 -0
- openix-1.0.0/Openix.egg-info/dependency_links.txt +1 -0
- openix-1.0.0/Openix.egg-info/requires.txt +1 -0
- openix-1.0.0/Openix.egg-info/top_level.txt +1 -0
- openix-1.0.0/PKG-INFO +19 -0
- openix-1.0.0/setup.cfg +4 -0
- openix-1.0.0/setup.py +21 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Openix
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A simple chess openings (ECO) library for Python.
|
|
5
|
+
Home-page: https://github.com/0xh7/Openix-Library
|
|
6
|
+
Author: 0xh7
|
|
7
|
+
Author-email: fjdjfjd1424@gmail.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.7
|
|
12
|
+
Requires-Dist: python-chess
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: author-email
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: home-page
|
|
17
|
+
Dynamic: requires-dist
|
|
18
|
+
Dynamic: requires-python
|
|
19
|
+
Dynamic: summary
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
python-chess
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
openix-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Openix
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A simple chess openings (ECO) library for Python.
|
|
5
|
+
Home-page: https://github.com/0xh7/Openix-Library
|
|
6
|
+
Author: 0xh7
|
|
7
|
+
Author-email: fjdjfjd1424@gmail.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.7
|
|
12
|
+
Requires-Dist: python-chess
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: author-email
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: home-page
|
|
17
|
+
Dynamic: requires-dist
|
|
18
|
+
Dynamic: requires-python
|
|
19
|
+
Dynamic: summary
|
openix-1.0.0/setup.cfg
ADDED
openix-1.0.0/setup.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="Openix",
|
|
5
|
+
version="1.0.0",
|
|
6
|
+
description="A simple chess openings (ECO) library for Python.",
|
|
7
|
+
author="0xh7",
|
|
8
|
+
author_email="fjdjfjd1424@gmail.com",
|
|
9
|
+
packages=find_packages(),
|
|
10
|
+
install_requires=[
|
|
11
|
+
"python-chess",
|
|
12
|
+
],
|
|
13
|
+
python_requires=">=3.7",
|
|
14
|
+
include_package_data=True,
|
|
15
|
+
url="https://github.com/0xh7/Openix-Library",
|
|
16
|
+
classifiers=[
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"License :: OSI Approved :: MIT License",
|
|
19
|
+
"Operating System :: OS Independent",
|
|
20
|
+
],
|
|
21
|
+
)
|