Add .gitignore and remove README.md

This commit is contained in:
Masonmason 2025-05-15 01:22:37 +08:00
parent 0bd11ca63e
commit 2ed3d2cb49
2 changed files with 96 additions and 6 deletions

96
.gitignore vendored Normal file
View File

@ -0,0 +1,96 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual environments
venv/
ENV/
env/
.venv/
.env/
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
.python-version
# celery beat schedule file
celerybeat-schedule
# SageMath parsed files
*.sage.py
# dotenv
.env
.env.*
# mypy
.mypy_cache/
# Pyre
.pyre/
# VS Code
.vscode/
# IDEs and editors
.idea/
*.sublime-project
*.sublime-workspace
# macOS
.DS_Store
# Windows
Thumbs.db

View File

@ -1,6 +0,0 @@
def main():
print("Hello from cluster4npu!")
if __name__ == "__main__":
main()