From 5c1a61f25c4bf8c1e27c4ae7ea745ba8e902d06a Mon Sep 17 00:00:00 2001 From: ndyer Date: Thu, 22 Dec 2022 09:08:06 -0500 Subject: [PATCH] renamed project to PynPong --- MANIFEST.in | 2 +- README.md | 2 +- {pypong => pynpong}/__init__.py | 0 {pypong => pynpong}/networking/__init__.py | 0 {pypong => pynpong}/networking/gui.py | 4 ++-- {pypong => pynpong}/networking/host.py | 0 setup.py | 6 +++--- 7 files changed, 7 insertions(+), 7 deletions(-) rename {pypong => pynpong}/__init__.py (100%) rename {pypong => pynpong}/networking/__init__.py (100%) rename {pypong => pynpong}/networking/gui.py (92%) rename {pypong => pynpong}/networking/host.py (100%) diff --git a/MANIFEST.in b/MANIFEST.in index 0144a53..62f23fd 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -recursive-include pypong * \ No newline at end of file +recursive-include pynpong * \ No newline at end of file diff --git a/README.md b/README.md index 2ebeaf1..88f13ee 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# PyPong +# PynPong [![License: GNU GPL v3.0](https://img.shields.io/badge/license-GNU%20GPL%20v3.0-blue)](LICENSE) A game of pong made in PyGame, designed to be used over a network connection. \ No newline at end of file diff --git a/pypong/__init__.py b/pynpong/__init__.py similarity index 100% rename from pypong/__init__.py rename to pynpong/__init__.py diff --git a/pypong/networking/__init__.py b/pynpong/networking/__init__.py similarity index 100% rename from pypong/networking/__init__.py rename to pynpong/networking/__init__.py diff --git a/pypong/networking/gui.py b/pynpong/networking/gui.py similarity index 92% rename from pypong/networking/gui.py rename to pynpong/networking/gui.py index 118077c..fddd2f8 100644 --- a/pypong/networking/gui.py +++ b/pynpong/networking/gui.py @@ -11,7 +11,7 @@ def main(): Runs the game launcher. """ main_window = tk.Tk() - main_window.title('PyPong Launcher') + main_window.title('PynPong Launcher') main_window.resizable(width=False, height=False) main_window.geometry('500x250') @@ -32,7 +32,7 @@ def main(): # Networking code will go here eventually # Create the top title label - title_label = tk.Label(text='PyPong Launcher', fg='white', bg='#000040', padx=1, pady=20) + title_label = tk.Label(text='PynPong Launcher', fg='white', bg='#000040', padx=1, pady=20) title_label.pack(side=tk.TOP, fill=tk.BOTH) # Create the list of games diff --git a/pypong/networking/host.py b/pynpong/networking/host.py similarity index 100% rename from pypong/networking/host.py rename to pynpong/networking/host.py diff --git a/setup.py b/setup.py index d8487e4..243870f 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ import setuptools -import pypong +import pynpong with open('requirements.txt') as fh: required = fh.read().splitlines() @@ -9,13 +9,13 @@ with open('README.md', 'r') as fh: setuptools.setup( name='PyPong', - version=pypong.__version__, + version=pynpong.__version__, author='Nicholas Dyer', description='A game of pong made in PyGame for play over a local network', license='GNU GPL-3.0', long_description=long_description, long_description_content_type='text/markdown', - url='https://gitea.citruxx.com/ndyer/PyPong', + url='https://gitea.citruxx.com/ndyer/PynPong', packages=setuptools.find_packages(), # https://pypi.org/classifiers/ classifiers=[