migration of application to own repo
Python CI / test (push) Successful in 38s

This commit is contained in:
2025-11-07 18:47:31 +01:00
parent 2e926ab87a
commit 9862c3124a
20 changed files with 2134 additions and 133 deletions
+8 -8
View File
@@ -3,14 +3,14 @@ requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyweblayout-ereader"
name = "dreader-application"
version = "0.1.0"
description = "A complete ebook reader application built with pyWebLayout"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
{name = "Duncan Tourolle", email = "duncan@tourolle.paris"}
]
keywords = ["ebook", "reader", "epub", "ereader", "layout"]
classifiers = [
@@ -27,7 +27,7 @@ classifiers = [
]
dependencies = [
"pyweblayout>=0.1.0",
"pyweblayout @ git+https://gitea.tourolle.paris/dtourolle/pyWebLayout",
"Pillow>=9.0.0",
]
@@ -41,14 +41,14 @@ dev = [
]
[project.urls]
Homepage = "https://github.com/yourusername/pyWebLayout-ereader"
Documentation = "https://github.com/yourusername/pyWebLayout-ereader#readme"
Repository = "https://github.com/yourusername/pyWebLayout-ereader"
Issues = "https://github.com/yourusername/pyWebLayout-ereader/issues"
Homepage = "https://gitea.tourolle.paris/dtourolle/dreader-application"
Documentation = "https://gitea.tourolle.paris/dtourolle/dreader-application#readme"
Repository = "https://gitea.tourolle.paris/dtourolle/dreader-application"
Issues = "https://gitea.tourolle.paris/dtourolle/dreader-application/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["pyweblayout_ereader*"]
include = ["dreader*"]
[tool.pytest.ini_options]
testpaths = ["tests"]