2021-01-03 19:45:07 +00:00
|
|
|
[tool.poetry]
|
|
|
|
authors = ["Robert Kaussow <mail@thegeeklab.de>"]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Intended Audience :: Information Technology",
|
|
|
|
"Intended Audience :: System Administrators",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
2021-10-07 07:53:00 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2021-01-03 19:45:07 +00:00
|
|
|
"Topic :: Utilities",
|
|
|
|
"Topic :: Software Development",
|
|
|
|
]
|
|
|
|
description = "Clone single branch from all repositories listed in a file."
|
|
|
|
documentation = "https://github.com/thegeeklab/git-batch/"
|
|
|
|
homepage = "https://github.com/thegeeklab/git-batch/"
|
|
|
|
include = [
|
|
|
|
"LICENSE",
|
|
|
|
]
|
|
|
|
keywords = ["git", "batch", "automation"]
|
|
|
|
license = "MIT"
|
|
|
|
name = "git-batch"
|
|
|
|
packages = [
|
|
|
|
{include = "gitbatch"},
|
|
|
|
]
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/thegeeklab/git-batch/"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-02-21 08:10:28 +00:00
|
|
|
GitPython = "3.1.27"
|
2021-05-10 19:45:09 +00:00
|
|
|
colorama = "0.4.4"
|
2021-10-03 14:10:38 +00:00
|
|
|
python = "^3.7.0"
|
2021-07-29 08:09:57 +00:00
|
|
|
python-json-logger = "2.0.2"
|
2021-01-03 19:45:07 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2022-01-26 02:10:42 +00:00
|
|
|
bandit = "1.7.2"
|
2021-10-20 15:02:20 +00:00
|
|
|
flake8 = "4.0.1"
|
2021-05-10 19:45:09 +00:00
|
|
|
flake8-blind-except = "0.2.0"
|
|
|
|
flake8-builtins = "1.5.3"
|
2021-05-10 20:34:41 +00:00
|
|
|
flake8-docstrings = "1.6.0"
|
2021-10-20 06:24:34 +00:00
|
|
|
flake8-eradicate = "1.2.0"
|
2021-10-14 12:07:21 +00:00
|
|
|
flake8-isort = "4.1.1"
|
2021-05-10 19:45:09 +00:00
|
|
|
flake8-logging-format = "0.6.0"
|
|
|
|
flake8-pep3101 = "1.3.0"
|
|
|
|
flake8-polyfill = "1.0.2"
|
2021-10-20 06:24:34 +00:00
|
|
|
flake8-quotes = "3.3.1"
|
2021-08-03 16:16:27 +00:00
|
|
|
pdoc3 = "0.10.0"
|
2021-08-08 03:24:39 +00:00
|
|
|
pep8-naming = "0.12.1"
|
2021-05-17 21:46:54 +00:00
|
|
|
pydocstyle = "6.1.1"
|
2022-02-14 02:04:48 +00:00
|
|
|
pytest = "7.0.1"
|
2021-10-04 14:52:30 +00:00
|
|
|
pytest-cov = "3.0.0"
|
2022-01-28 11:49:51 +00:00
|
|
|
pytest-mock = "3.7.0"
|
2021-05-28 03:37:28 +00:00
|
|
|
requests-mock = "1.9.3"
|
2021-12-26 09:06:21 +00:00
|
|
|
yapf = "0.32.0"
|
2022-02-05 14:01:47 +00:00
|
|
|
toml = "0.10.2"
|
2021-01-03 19:45:07 +00:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
git-batch = "gitbatch.cli:main"
|
|
|
|
|
|
|
|
[tool.poetry-dynamic-versioning]
|
|
|
|
enable = true
|
|
|
|
style = "semver"
|
|
|
|
vcs = "git"
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
default_section = "THIRDPARTY"
|
|
|
|
force_single_line = true
|
|
|
|
line_length = 99
|
|
|
|
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
|
2021-01-03 20:43:57 +00:00
|
|
|
skip_glob = ["**/.env*", "**/env/*", "**/.venv/*", "**/docs/*"]
|
2021-01-03 19:45:07 +00:00
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
addopts = "gitbatch --cov=gitbatch --cov-report=xml:coverage.xml --cov-report=term --cov-append --no-cov-on-fail"
|
|
|
|
filterwarnings = [
|
|
|
|
"ignore::FutureWarning",
|
|
|
|
"ignore:.*collections.*:DeprecationWarning",
|
|
|
|
"ignore:.*pep8.*:FutureWarning",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
omit = ["**/test/*"]
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
|