diff options
| author | Zoltan Szabatin <[email protected]> | 2025-01-29 14:03:02 -0800 |
|---|---|---|
| committer | Zoltan Szabatin <[email protected]> | 2025-01-29 14:03:02 -0800 |
| commit | a2cac5eb56d1562ea801ccd1be692f8892e525fb (patch) | |
| tree | c7407dc741f2c98caface25406fade471d5628fa | |
| parent | docs(readme): add readme (diff) | |
| download | splitscreen-duo-a2cac5eb56d1562ea801ccd1be692f8892e525fb.tar.xz splitscreen-duo-a2cac5eb56d1562ea801ccd1be692f8892e525fb.zip | |
feat: scaffold python project
| -rw-r--r-- | .gitignore | 10 | ||||
| -rw-r--r-- | .python-version | 1 | ||||
| -rw-r--r-- | pyproject.toml | 29 | ||||
| -rw-r--r-- | requirements-dev.lock | 12 | ||||
| -rw-r--r-- | requirements.lock | 12 | ||||
| -rw-r--r-- | src/splitscreen_duo/__init__.py | 4 | ||||
| -rw-r--r-- | src/splitscreen_duo/__main__.py | 4 |
7 files changed, 72 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ae8554d --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# python generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# venv +.venv diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..c10780c --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13.1 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1528345 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,29 @@ +[project] +name = "splitscreen-duo" +version = "0.1.0" +description = "The Dual Screen Console" +authors = [ + { name = "Abdullah Havaldar ", email = "[email protected]" }, + { name = "Musa Ahmed", email = "[email protected]" }, + { name = "Zoltan Szabatin", email = "[email protected]" }, +] +dependencies = [] +readme = "README.md" +requires-python = ">= 3.8" + +[project.scripts] +"splitscreen_duo" = "splitscreen_duo:main" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.rye] +managed = true +dev-dependencies = [] + +[tool.hatch.metadata] +allow-direct-references = true + +[tool.hatch.build.targets.wheel] +packages = ["src/splitscreen_duo"] diff --git a/requirements-dev.lock b/requirements-dev.lock new file mode 100644 index 0000000..505fd45 --- /dev/null +++ b/requirements-dev.lock @@ -0,0 +1,12 @@ +# generated by rye +# use `rye lock` or `rye sync` to update this lockfile +# +# last locked with the following flags: +# pre: false +# features: [] +# all-features: false +# with-sources: false +# generate-hashes: false +# universal: false + +-e file:. diff --git a/requirements.lock b/requirements.lock new file mode 100644 index 0000000..505fd45 --- /dev/null +++ b/requirements.lock @@ -0,0 +1,12 @@ +# generated by rye +# use `rye lock` or `rye sync` to update this lockfile +# +# last locked with the following flags: +# pre: false +# features: [] +# all-features: false +# with-sources: false +# generate-hashes: false +# universal: false + +-e file:. diff --git a/src/splitscreen_duo/__init__.py b/src/splitscreen_duo/__init__.py new file mode 100644 index 0000000..eea3683 --- /dev/null +++ b/src/splitscreen_duo/__init__.py @@ -0,0 +1,4 @@ +def main() -> int: + print("The Dual Screen Console") + + return 0 diff --git a/src/splitscreen_duo/__main__.py b/src/splitscreen_duo/__main__.py new file mode 100644 index 0000000..8d8de62 --- /dev/null +++ b/src/splitscreen_duo/__main__.py @@ -0,0 +1,4 @@ +import test +import sys + +sys.exit(test.main()) |