diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 9b1ecb2..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,3 +0,0 @@ -[build-system] -requires = ["hatchling"] -build-backend = "hatchling.build" \ No newline at end of file diff --git a/src/__init__.py b/venture/__init__.py similarity index 85% rename from src/__init__.py rename to venture/__init__.py index 831b63c..6bd4db7 100644 --- a/src/__init__.py +++ b/venture/__init__.py @@ -1,8 +1,8 @@ -from flask import Flask, render_template, request +from flask import Flask, request from flask_socketio import SocketIO, emit, join_room, rooms -from src.code import make_code -from src.game import Game +from venture.code import make_code +from venture.game import Game games = {} diff --git a/src/code.py b/venture/code.py similarity index 100% rename from src/code.py rename to venture/code.py diff --git a/src/game.py b/venture/game.py similarity index 100% rename from src/game.py rename to venture/game.py