commit d3ef28c6543aaf8d42954cbafd4201a766c42a15 Author: venus Date: Sun Apr 5 22:32:46 2026 -0500 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..505a3b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..58ddcb7 --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from ctf!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7ea5331 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "ctf" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.14" +dependencies = []