2025-01-12 00:22:08 -06:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "Wutta-COREPOS"
|
2025-01-15 11:02:28 -06:00
|
|
|
version = "0.2.1"
|
2025-01-12 00:22:08 -06:00
|
|
|
description = "Wutta Framework integration for CORE-POS"
|
|
|
|
readme = "README.md"
|
|
|
|
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
|
|
|
|
license = {text = "GNU GPL v3+"}
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Topic :: Office/Business",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
]
|
|
|
|
requires-python = ">= 3.8"
|
|
|
|
dependencies = [
|
2025-01-13 13:32:19 -06:00
|
|
|
"pyCOREPOS>=0.3.3",
|
|
|
|
"WuttJamaican>=0.20.1",
|
2025-01-12 00:22:08 -06:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
2025-01-12 20:04:19 -06:00
|
|
|
web = ["WuttaWeb"]
|
2025-01-12 00:22:08 -06:00
|
|
|
docs = ["Sphinx", "furo"]
|
|
|
|
tests = ["pytest-cov", "tox"]
|
|
|
|
|
|
|
|
|
|
|
|
[project.entry-points."wutta.app.providers"]
|
|
|
|
wutta_corepos = "wutta_corepos.app:WuttaCoreposAppProvider"
|
|
|
|
|
|
|
|
[project.entry-points."wutta.config.extensions"]
|
|
|
|
wutta_corepos = "wutta_corepos.conf:WuttaCoreposConfigExtension"
|
|
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://wuttaproject.org/"
|
|
|
|
Repository = "https://forgejo.wuttaproject.org/wutta/wutta-corepos"
|
|
|
|
Issues = "https://forgejo.wuttaproject.org/wutta/wutta-corepos/issues"
|
|
|
|
Changelog = "https://forgejo.wuttaproject.org/wutta/wutta-corepos/src/branch/master/CHANGELOG.md"
|
|
|
|
|
|
|
|
|
|
|
|
[tool.commitizen]
|
|
|
|
version_provider = "pep621"
|
|
|
|
tag_format = "v$version"
|
|
|
|
update_changelog_on_bump = true
|
|
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
|
|
exclude = [
|
|
|
|
"htmlcov/",
|
|
|
|
]
|