gitea-gitlab-exporter/pyproject.toml
Neill Cox 6343ee6db3 🚧 WIP: Begin exploring the GitLab API
- add PrettyTable for display

This commit is very much WIP. Just some inital playing
with the API.

Eventually this should lead to a tool that will export at a
minimum the wiki and issues for a project.

First though, I need to get a feel for how the API works.
2023-10-23 20:36:23 +11:00

46 lines
1,001 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 = [
"prettytable",
"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",
]