Kumi
d5777fac54
Some checks failed
website / build (push) Failing after 30s
Restructured the entire project directory, making `plankapy` pip-installable, enhancing its modularity and maintainability. This involved moving and renaming Python source files and tests into a dedicated `src/plankapy` structure, introducing a `pyproject.toml` for modern packaging standards, and removing obsolete `setup.py` and `__init__.py` files. Updated CI/CD pipelines to accommodate the new structure, ensuring continued automation efficiency. Added a `test_config.py` for centralized test configuration, improving test reliability and ease of modification. - Migrated project documentation and workflow under new `.forgejo` directory for consistency with Forgejo platform requirements. - Enhanced Docker containerization in CI builds by specifying a node-based container, streamlining the environment setup process. - Expanded `.gitignore` to include `venv/`, promoting local development best practices. - Introduced a comprehensive README update, clarifying the project's forked nature and pip-installation goal, fostering better community understanding and contribution suitability.
28 lines
No EOL
815 B
TOML
28 lines
No EOL
815 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "plankapy"
|
|
version = "0.1.0"
|
|
authors = [
|
|
{ name="hwelch-fle" },
|
|
{ name="Private.coffee Team", email="support@private.coffee" },
|
|
]
|
|
description = "A python 3 based API for controlling a self-hosted Planka instance"
|
|
readme = "README.md"
|
|
license = { file="LICENSE" }
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [
|
|
"requests"
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.private.coffee/PrivateCoffee/plankapy"
|
|
"Bug Tracker" = "https://git.private.coffee/PrivateCoffee/plankapy/issues"
|
|
"Source Code" = "https://git.private.coffee/PrivateCoffee/plankapy" |