initial commit of project structure

This commit is contained in:
Jakub Kropáček 2024-05-25 23:05:55 +02:00
commit e511027a7d
3 changed files with 57 additions and 0 deletions

33
.gitignore vendored Normal file
View file

@ -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/

9
README.md Normal file
View file

@ -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
```

15
pyproject.toml Normal file
View file

@ -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 <kropikuba@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"