From ef0a13c2226f6854b5b294f690b9bf2a0b0ab81e Mon Sep 17 00:00:00 2001
From: Joseph
Date: Thu, 22 Feb 2024 14:39:15 +0100
Subject: [PATCH] Move to client
---
main.py => client/main.py | 0
popbot.py => client/popbot.py | 0
pyproject.toml | 33 +++++++++++++++------------------
3 files changed, 15 insertions(+), 18 deletions(-)
rename main.py => client/main.py (100%)
rename popbot.py => client/popbot.py (100%)
diff --git a/main.py b/client/main.py
similarity index 100%
rename from main.py
rename to client/main.py
diff --git a/popbot.py b/client/popbot.py
similarity index 100%
rename from popbot.py
rename to client/popbot.py
diff --git a/pyproject.toml b/pyproject.toml
index 5a5bafe..68c47e3 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,24 +1,24 @@
[project]
name = "jklm-client" # Required
-version = "0.0.0" # Required
-description = "Python client for the party game JKLM.fun" # Optional
+version = "0.0.0" # Required
+description = "Python client for the party game JKLM.fun" # Optional
requires-python = ">=3.9"
-license = {file = "LICENSE"}
-keywords = [
- "JKLM.fun", "game", "client", "python", "async", "websocket"
- ]
+license = { file = "LICENSE" }
+keywords = ["JKLM.fun", "game", "client", "python", "async", "websocket"]
+
authors = [
- {name = "Joseph Gerald", email = "contact@jooo.tech" } # Optional
+ { name = "Joseph Gerald", email = "contact@jooo.tech" }, # Optional
]
maintainers = [
- {name = "Joseph Gerald", email = "contact@jooo.tech" } # Optional
+ { name = "Joseph Gerald", email = "contact@jooo.tech" }, # Optional
]
-classifiers = [ # Optional
- # How mature is this project? Common values are
- # 3 - Alpha
- # 4 - Beta
- # 5 - Production/Stable
+
+classifiers = [ # Optional
+ # How mature is this project? Common values are
+ # 3 - Alpha
+ # 4 - Beta
+ # 5 - Production/Stable
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
@@ -30,10 +30,7 @@ classifiers = [ # Optional
"Programming Language :: Python :: 3.11",
]
-dependencies = [
- "nodriver",
- "websocket_client",
-]
+dependencies = ["nodriver", "websocket_client"]
#
[project.urls]
@@ -43,7 +40,7 @@ dependencies = [
[tool.setuptools]
-package-data = {"sample" = ["*.dat"]}
+package-data = { "sample" = ["*.dat"] }
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]