🚧 Update skeleton to new project

This commit is contained in:
Neill Cox 2023-10-22 20:43:24 +11:00
parent b2822e4541
commit cebcde61aa
4 changed files with 34 additions and 57 deletions

View file

@ -3,12 +3,12 @@ requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python_skeleton"
name = "gitea_gitlab_exporter"
version = "0.0.1"
authors = [
{ name="Neill Cox", email="neill@ingenious.com.au" },
]
description = "A skeleton for a python project"
description = "A tool to copy a project from gitlab to gitea"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
@ -17,17 +17,29 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"requests"
]
[project.urls]
"Homepage" = "https://git.evatt.ingenious.com.au/neillc/python_skeleton"
"Bug Tracker" = "https://git.evatt.ingenious.com.au/neillc/python_skeleton"
"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]
hello_world = "python_skeleton:hello_world"
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=python_skeleton"
addopts = "-v --cov-report term-missing --cov=gitea_gitlab_exporter"
testpaths = [
"tests",
]