gitea-gitlab-exporter/pyproject.toml

45 lines
983 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gitea_gitlab_exporter"
version = "0.0.1"
authors = [
{ name="Neill Cox", email="neill@ingenious.com.au" },
]
description = "A tool to copy a project from gitlab to gitea"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"requests"
]
[project.urls]
"Homepage" = "https://git.evatt.ingenious.com.au/neillc/gitea-gitlab-exporter"
"Bug Tracker" = "https://git.evatt.ingenious.com.au/neillc/gitea-gitlab-exporter"
[project.scripts]
gitlab2gitea = "gitea_gitlab_exporter:exporter"
[project.optional-dependencies]
dev = [
"pre-commit",
"black",
"flake8"
]
test = [
"pytest",
"pytest-cov",
]
[tool.pytest.ini_options]
addopts = "-v --cov-report term-missing --cov=gitea_gitlab_exporter"
testpaths = [
"tests",
]