From e511027a7dd3e859abbbd256522de6b955ca473a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Krop=C3=A1=C4=8Dek?= Date: Sat, 25 May 2024 23:05:55 +0200 Subject: [PATCH] initial commit of project structure --- .gitignore | 33 +++++++++++++++++++++++++++++++++ README.md | 9 +++++++++ pyproject.toml | 15 +++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..42b97b6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + + +# PyCharm +.idea/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..cbce4a1 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +many-repos +--- +Simple tool to clone and update all your repositories between many version control systems, with simple toml config + +## Instalation + +``` +pipx install many-repos +``` diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..384f452 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "many-repos" +version = "0.1.0" +description = "Simple tool to clone and update all your repositories between many version control systems, with simple toml config" +authors = ["Jakub Kropáček "] +license = "MIT" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.12" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"