Initial commit

This commit is contained in:
Campbell 2024-02-06 20:17:50 -05:00
commit 84d6647688
17 changed files with 122 additions and 0 deletions

8
.idea/.gitignore generated vendored Normal file
View File

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@ -0,0 +1,13 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="PyPep8NamingInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
<option name="ignoredErrors">
<list>
<option value="N802" />
<option value="N806" />
</list>
</option>
</inspection_tool>
</profile>
</component>

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

10
.idea/libWiiPy.iml generated Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.venv" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

7
.idea/misc.xml generated Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="Python 3.11 (libWiiPy)" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.11 (libWiiPy)" project-jdk-type="Python SDK" />
</project>

8
.idea/modules.xml generated Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/libWiiPy.iml" filepath="$PROJECT_DIR$/.idea/libWiiPy.iml" />
</modules>
</component>
</project>

19
LICENSE Normal file
View File

@ -0,0 +1,19 @@
Copyright (c) 2024 NinjaCheetah
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

1
README.md Normal file
View File

@ -0,0 +1 @@
# libWiiPy

Binary file not shown.

BIN
dist/libWiiPy_NinjaCheetah-0.0.1.tar.gz vendored Normal file

Binary file not shown.

22
pyproject.toml Normal file
View File

@ -0,0 +1,22 @@
[project]
name = "libWiiPy_NinjaCheetah"
version = "0.0.1"
authors = [
{ name="NinjaCheetah", email="ninjacheetah@ncxprogramming.com" },
]
description = "A Wii-related library for Python"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/NinjaCheetah/libWiiPy"
Issues = "https://github.com/NinjaCheetah/libWiipy/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

View File

@ -0,0 +1,15 @@
Metadata-Version: 2.1
Name: libWiiPy_NinjaCheetah
Version: 0.0.1
Summary: A Wii-related library for Python
Author-email: NinjaCheetah <ninjacheetah@ncxprogramming.com>
Project-URL: Homepage, https://github.com/NinjaCheetah/libWiiPy
Project-URL: Issues, https://github.com/NinjaCheetah/libWiipy/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
# libWiiPy

View File

@ -0,0 +1,9 @@
LICENSE
README.md
pyproject.toml
src/libWiiPy_NinjaCheetah/__init__.py
src/libWiiPy_NinjaCheetah/example.py
src/libWiiPy_NinjaCheetah.egg-info/PKG-INFO
src/libWiiPy_NinjaCheetah.egg-info/SOURCES.txt
src/libWiiPy_NinjaCheetah.egg-info/dependency_links.txt
src/libWiiPy_NinjaCheetah.egg-info/top_level.txt

View File

@ -0,0 +1 @@

View File

@ -0,0 +1 @@
libWiiPy_NinjaCheetah

View File

View File

@ -0,0 +1,2 @@
def add_one(number):
return number + 1